From 78dc3a434269e14b9468c0b6eb45f01ddfeaf1d0 Mon Sep 17 00:00:00 2001 From: Mawoka Date: Tue, 12 Sep 2023 16:32:10 +0200 Subject: [PATCH] :bug: Fixed commandpalettenotice popping up all the time --- frontend/src/lib/components/popover/commandpalettenotice.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/popover/commandpalettenotice.svelte b/frontend/src/lib/components/popover/commandpalettenotice.svelte index d0b6b3d9..562e04e4 100644 --- a/frontend/src/lib/components/popover/commandpalettenotice.svelte +++ b/frontend/src/lib/components/popover/commandpalettenotice.svelte @@ -19,7 +19,7 @@ SPDX-License-Identifier: MPL-2.0 return; } open = true; - // Cookies.set('commandpalette_notice', 'shown', { expires: new Date().setDate(new Date().getDate() + 30) }); + Cookies.set('commandpalette_notice', 'shown', { expires: new Date().setDate(new Date().getDate() + 30) }); });