Fix mixing old and new syntaxes error

This commit is contained in:
Roman Krček
2025-06-28 00:35:47 +02:00
parent 2d7feea623
commit 83a2985a46
2 changed files with 2 additions and 2 deletions

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"