fix: review notes

This commit is contained in:
bo0tzz
2026-04-20 14:31:04 +02:00
parent e583e3c55a
commit fd52481582
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -11,11 +11,11 @@
import { t } from 'svelte-i18n';
import type { PageData } from './$types';
interface Props {
type Props = {
data: PageData;
}
};
let { data }: Props = $props();
const { data }: Props = $props();
let email = $state(data.email || authManager.user?.email || '');
let password = $state('');