We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fcf427 commit 600a53fCopy full SHA for 600a53f
1 file changed
src/routes/(anonymous)/login/+page.svelte
@@ -11,8 +11,8 @@
11
import { handleApiError } from '$lib/errorhandling/apiErrorHandling';
12
import { UserStore } from '$lib/stores/UserStore';
13
14
- let usernameOrEmail = $state<string>('');
15
- let password = $state<string>('');
+ let usernameOrEmail = $state('');
+ let password = $state('');
16
let turnstileResponse = $state<string | null>(null);
17
18
async function handleSubmission(e: SubmitEvent) {
0 commit comments