From 571566d47627b9612a1b341e641d3ffe11b462f8 Mon Sep 17 00:00:00 2001 From: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Fri, 16 Aug 2024 22:01:01 +0900 Subject: Update timeline.vue (fix wrong type) --- packages/frontend/src/pages/timeline.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'); -- cgit v1.2.3-freya