diff --git a/.gitignore b/.gitignore index fe6a775..1530160 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,5 @@ node_modules .env.* !.env.example vite.config.js.timestamp-* -vite.config.ts.timestamp-* \ No newline at end of file +vite.config.ts.timestamp-* +.vercel/ \ No newline at end of file diff --git a/src/routes/(protected)/home/CardAddForm.svelte b/src/routes/(protected)/home/CardAddForm.svelte index ebe5705..8c54fb5 100644 --- a/src/routes/(protected)/home/CardAddForm.svelte +++ b/src/routes/(protected)/home/CardAddForm.svelte @@ -17,7 +17,7 @@ placeholder="Capital of Paris?" rows="4" {...$constraints.front} - /> + > {#if $errors.front}{$errors.front}{/if}
@@ -29,7 +29,7 @@ placeholder="France" rows="4" {...$constraints.back} - /> + > {#if $errors.back}{$errors.back}{/if}
diff --git a/src/routes/(protected)/home/CardAddTable.svelte b/src/routes/(protected)/home/CardAddTable.svelte index bd6be35..f4fb98e 100644 --- a/src/routes/(protected)/home/CardAddTable.svelte +++ b/src/routes/(protected)/home/CardAddTable.svelte @@ -20,7 +20,7 @@ placeholder="Capital of Paris?" rows="4" {...$constraints.front} - /> + > {#if $errors.front}{$errors.front}{/if} @@ -36,7 +36,7 @@ placeholder="France" rows="4" {...$constraints.back} - /> + > {#if $errors.back}{$errors.back}{/if}