diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-10-29 23:53:23 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-10-29 23:53:23 -0400 |
| commit | cdb40ca671a85704f751179d13277a7db816b569 (patch) | |
| tree | 173319bb14013c97f3800238ef8a8f7304332b01 /ui/routes/(app) | |
| parent | 66d3fcf2e22f057bacce8d97d43a13c1c5a9ad09 (diff) | |
Incrementally less jank invite listing.
Diffstat (limited to 'ui/routes/(app)')
| -rw-r--r-- | ui/routes/(app)/me/+page.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/routes/(app)/me/+page.svelte b/ui/routes/(app)/me/+page.svelte index fb612b8..7559dbe 100644 --- a/ui/routes/(app)/me/+page.svelte +++ b/ui/routes/(app)/me/+page.svelte @@ -1,7 +1,7 @@ <script> import { changePassword } from '$lib/apiServer.js'; - import Invite from '$lib/components/Invite.svelte'; + import Invites from '$lib/components/Invites.svelte'; let currentPassword, newPassword, confirmPassword, passwordForm; let pending = false; @@ -38,4 +38,4 @@ </button> </form> -<Invite /> +<Invites /> |
