format files

This commit is contained in:
maxDorninger
2025-09-12 20:07:06 +02:00
parent 6f8d3eea4e
commit 6203ec5ce0
21 changed files with 4249 additions and 4231 deletions

View File

@@ -9,11 +9,11 @@
import { Input } from '$lib/components/ui/input/index.js';
import { invalidateAll } from '$app/navigation';
import client from '$lib/api';
import type {components} from "$lib/api/api";
import type { components } from '$lib/api/api';
let { users }: { users: components["schemas"]["UserRead"] [] } = $props();
let { users }: { users: components['schemas']['UserRead'][] } = $props();
let sortedUsers = $derived(users.sort((a, b) => a.email.localeCompare(b.email)));
let selectedUser: components["schemas"]["UserRead"] | null = $state(null);
let selectedUser: components['schemas']['UserRead'] | null = $state(null);
let newPassword: string = $state('');
let newEmail: string = $state('');
let dialogOpen = $state(false);