From c2f711c56a3bc736cf507a920dee0915b69af77e Mon Sep 17 00:00:00 2001 From: Kit La Touche Date: Thu, 21 Nov 2024 16:26:10 -0500 Subject: Use store.set where appropriate If you're setting it to a static value, use set. --- ui/lib/components/LogOut.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/lib') diff --git a/ui/lib/components/LogOut.svelte b/ui/lib/components/LogOut.svelte index 25dd5e9..52aa039 100644 --- a/ui/lib/components/LogOut.svelte +++ b/ui/lib/components/LogOut.svelte @@ -7,7 +7,7 @@ event.preventDefault(); const response = await logOut(); if (200 <= response.status && response.status < 300) { - currentUser.update(() => null); + currentUser.set(null); goto('/login'); } } -- cgit v1.2.3