From 1135afb359e598fc8df08cf24a8b79089d0d8444 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Tue, 10 Mar 2026 16:15:58 +0100 Subject: [PATCH] lint --- src/views/PublicNoteListView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)