diff --git a/src/views/PublicNoteListView.vue b/src/views/PublicNoteListView.vue index 10eb688..5bd6351 100644 --- a/src/views/PublicNoteListView.vue +++ b/src/views/PublicNoteListView.vue @@ -23,7 +23,7 @@ const tab = computed<"all" | "following">({ }), }) -const followingEnabled = computed(() => tab.value === 'following') +const followingEnabled = computed(() => tab.value === "following") const all = usePublicNoteList() const following = useFollowingNoteList(follows, followingEnabled)