summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui/lib/components/LogIn.svelte4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/lib/components/LogIn.svelte b/ui/lib/components/LogIn.svelte
index c49ea3b..b491583 100644
--- a/ui/lib/components/LogIn.svelte
+++ b/ui/lib/components/LogIn.svelte
@@ -1,8 +1,8 @@
<script>
let { legend = 'sign in', logIn = async (username, password) => {} } = $props();
- let username = $state();
- let password = $state();
+ let username = $state('');
+ let password = $state('');
let disabled = $state(false);
async function onsubmit(event) {