Fix mixing old and new syntaxes error #11

Merged
erman merged 1 commits from development into main 2025-06-28 00:36:09 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 83a2985a46 - Show all commits

View File

@@ -24,7 +24,7 @@
{#if showForm}
<form
on:submit={handleSubmit}
onsubmit={handleSubmit}
autocomplete="off"
class="flex w-full flex-col space-y-4 rounded border border-gray-300 bg-white p-8 shadow-none"
>

View File

@@ -40,7 +40,7 @@
{#if showForm}
<form
on:submit={handleSubmit}
onsubmit={handleSubmit}
autocomplete="off"
enctype="multipart/form-data"
class="flex w-full flex-col space-y-4 rounded border border-gray-300 bg-white p-8 shadow-none"