Skip to content

Commit

Permalink
update closing tag
Browse files Browse the repository at this point in the history
  • Loading branch information
xerosanyam committed May 24, 2024
1 parent 55098aa commit 5b89501
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ node_modules
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
vite.config.ts.timestamp-*
.vercel/
4 changes: 2 additions & 2 deletions src/routes/(protected)/home/CardAddForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
placeholder="Capital of Paris?"
rows="4"
{...$constraints.front}
/>
></textarea>
{#if $errors.front}<span>{$errors.front}</span>{/if}
</div>
<div>
Expand All @@ -29,7 +29,7 @@
placeholder="France"
rows="4"
{...$constraints.back}
/>
></textarea>
{#if $errors.back}<span>{$errors.back}</span>{/if}
</div>
<button type="reset">Clear</button>
Expand Down
4 changes: 2 additions & 2 deletions src/routes/(protected)/home/CardAddTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
placeholder="Capital of Paris?"
rows="4"
{...$constraints.front}
/>
></textarea>
</td>
{#if $errors.front}<td>{$errors.front}</td>{/if}
</tr>
Expand All @@ -36,7 +36,7 @@
placeholder="France"
rows="4"
{...$constraints.back}
/>
></textarea>
</td>
{#if $errors.back}<td>{$errors.back}</td>{/if}
</tr>
Expand Down

0 comments on commit 5b89501

Please sign in to comment.