feat: T04 fixes - i18n, auth tests, contact/vehicle test cleanup, status updates

This commit is contained in:
2026-07-14 20:16:15 +02:00
parent 2cf433a01c
commit b128ea6b39
16 changed files with 379 additions and 1004 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ export function isAuthenticated(): boolean {
return getAuthToken() !== null;
}
async function apiFetch<T>(
export async function apiFetch<T>(
path: string,
options: RequestInit = {}
): Promise<T> {