diff --git a/src/routes/auth/signup/+page.svelte b/src/routes/auth/signup/+page.svelte index c0f9fae..49b947e 100644 --- a/src/routes/auth/signup/+page.svelte +++ b/src/routes/auth/signup/+page.svelte @@ -34,32 +34,32 @@ import { userSchema } from '$lib/config/zod-schemas.js'; {#if $errors.firstName} -

{$errors.firstName}

+

{$errors.firstName}

{/if} {#if $errors.lastName} -

{$errors.lastName}

+

{$errors.lastName}

{/if} {#if $errors.email} -

{$errors.email}

+

{$errors.email}

{/if} {#if $errors.username} -

{$errors.username}

+

{$errors.username}

{/if} {#if $errors.password} -

{$errors.password}

+

{$errors.password}

{/if} {#if $errors.confirm_password} -

{$errors.confirm_password}

+

{$errors.confirm_password}

{/if}