From 5b8950198aeff6653a157cfb00d2f73e023f11f3 Mon Sep 17 00:00:00 2001 From: Sanyam Jain Date: Thu, 23 May 2024 20:05:53 -0700 Subject: [PATCH] update closing tag --- .gitignore | 3 ++- src/routes/(protected)/home/CardAddForm.svelte | 4 ++-- src/routes/(protected)/home/CardAddTable.svelte | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) 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}