refactor(#29): remove unused url

Removing as new MagicLink component doesnt need the prop
This commit is contained in:
OllyNicholass
2024-09-24 20:50:18 +01:00
parent b2d4d005e1
commit c674eb7c8d
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
import MagicLink from '$lib/components/MagicLink.svelte';
export let data;
let { supabase, session, url } = data;
$: ({ supabase, session, url } = data);
let { supabase, session } = data;
$: ({ supabase, session } = data);
</script>
{#if session !== null}