diff --git a/src/lib/components/pin-input.svelte b/src/lib/components/pin-input.svelte index c44b9f0..774c5f9 100644 --- a/src/lib/components/pin-input.svelte +++ b/src/lib/components/pin-input.svelte @@ -21,7 +21,7 @@ bind:value={pin} class={cn('flex items-center gap-2', rest.class)} type="text" - placeholder="" + placeholder="0" > {#each inputs as _} { diff --git a/src/routes/(auth)/password/reset/+page.svelte b/src/routes/(auth)/password/reset/+page.svelte index bf85822..a79e380 100644 --- a/src/routes/(auth)/password/reset/+page.svelte +++ b/src/routes/(auth)/password/reset/+page.svelte @@ -18,7 +18,6 @@ validators: zodClient(resetPasswordEmailSchema), resetForm: false, onUpdated: ({ form }) => { - console.log('form', form); if (form.valid) { showTokenVerification = true; $emailFormData.email = form.data.email;