diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-10-30 23:26:23 -0400 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-10-30 23:26:23 -0400 |
| commit | 80220d2188e0553304f2c78d225bbe275d8ba572 (patch) | |
| tree | de0a62325c698197612574c7a9f37dad279581be /ui/routes/(app) | |
| parent | 51aabd07ca5eeaee45a564f8799cc42dc195068c (diff) | |
| parent | 35b8a914b867237c9c64f33838b1e1f85fc46fb8 (diff) | |
Merge branch 'main' into wip/mobile
Diffstat (limited to 'ui/routes/(app)')
| -rw-r--r-- | ui/routes/(app)/me/+page.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/routes/(app)/me/+page.svelte b/ui/routes/(app)/me/+page.svelte index 7559dbe..82af3c7 100644 --- a/ui/routes/(app)/me/+page.svelte +++ b/ui/routes/(app)/me/+page.svelte @@ -3,7 +3,7 @@ import Invites from '$lib/components/Invites.svelte'; - let currentPassword, newPassword, confirmPassword, passwordForm; + let currentPassword = "", newPassword = "", confirmPassword = "", passwordForm; let pending = false; $: valid = (newPassword === confirmPassword) && (newPassword !== currentPassword); $: disabled = pending || !valid; |
