Files
scan-wave/src/routes/auth/signout/+page.svelte
Roman Krček fd12f22aa7
All checks were successful
Build Docker image / build (pull_request) Successful in 4m39s
Clear token on signout
2025-06-22 17:47:55 +02:00

12 lines
184 B
Svelte

<script lang="ts">
import { onMount } from 'svelte';
import { goto } from '$app/navigation';
onMount(() => {
localStorage.clear();
goto('/');
});
</script>
<p>Signing out...</p>