Skip to content

Commit 9e453f0

Browse files
committed
✏️ Fix typo (#1252)
1 parent 5b1dbd8 commit 9e453f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib/components/AuthForm.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
1313
import {
1414
GUEST_USER_NAME,
15-
// GUEST_USER_PASSWORD,
16-
GUEST_USER_PASSWORD_FOR_LOCAL,
15+
GUEST_USER_PASSWORD,
16+
// GUEST_USER_PASSWORD_FOR_LOCAL,
1717
LOGIN_LABEL,
1818
} from '$lib/constants/forms';
1919
@@ -43,8 +43,8 @@
4343
//
4444
// See:
4545
// src/lib/constants/forms.ts
46-
$form.password = GUEST_USER_PASSWORD_FOR_LOCAL;
47-
// $form.password = GUEST_USER_PASSWORD;
46+
// $form.password = GUEST_USER_PASSWORD_FOR_LOCAL;
47+
$form.password = GUEST_USER_PASSWORD;
4848
4949
// $formの更新後にフォームを送信
5050
await tick();

0 commit comments

Comments
 (0)