diff --git a/src/modules/activities/composables/useEvents.ts b/src/modules/activities/composables/useEvents.ts index cdc5902..902c053 100644 --- a/src/modules/activities/composables/useEvents.ts +++ b/src/modules/activities/composables/useEvents.ts @@ -29,9 +29,12 @@ export function useEvents() { const seen = new Set(publicEvents.map((e) => e.id)) const own = myEvents.filter((e) => !seen.has(e.id)) return [...publicEvents, ...own] - } catch { + } catch (err) { // Falling back to just the public feed is acceptable — the user // can still browse, they just won't see their own pending events. + // Log so a flaky probe is debuggable from the console without + // toast-spamming the user on every transient failure. + console.warn('[useEvents] fetchMyEvents failed, showing public feed only:', err) return publicEvents } }