diff --git a/packages/frontend/src/pages/timeline.vue b/packages/frontend/src/pages/timeline.vue index 258d1443d9..c4bff3a0b8 100644 --- a/packages/frontend/src/pages/timeline.vue +++ b/packages/frontend/src/pages/timeline.vue @@ -60,7 +60,7 @@ provide('shouldOmitHeaderTitle', true); const tlComponent = shallowRef>(); const rootEl = shallowRef(); -type TimelinePageSrc = BasicTimelineType & `list:${string}`; +type TimelinePageSrc = BasicTimelineType | `list:${string}`; const queue = ref(0); const srcWhenNotSignin = ref<'local' | 'global'>(isAvailableBasicTimeline('local') ? 'local' : 'global');