build(*): Fix broken closing tag preventing build

This commit is contained in:
Josh Creek
2024-11-10 19:40:59 +00:00
parent 4137f85190
commit 6cdc0f0bde
+7 -8
View File
@@ -34,7 +34,7 @@
} else {
alert('Please sign in to delete your account.');
}
return async () => {
loading = false;
};
@@ -184,12 +184,11 @@
<a href="/contact" class="btn btn-outline w-full">Provide Feedback</a>
</section>
</div>
</form>
<form method="post" action="?/delete" use:enhance={handleAccountDeletion}>
<div>
<button class="button block" disabled={loading}>Delete My Account</button>
</div>
</form>
<form method="post" action="?/delete" use:enhance={handleAccountDeletion}>
<div>
<button class="button block" disabled={loading}>Delete My Account</button>
</div>
</form>
</div>
</div>