feat: update user retrieval and add new users table; enhance MainForm with user fetching and localization support

This commit is contained in:
2026-01-19 12:38:50 +01:00
parent 9bc22300eb
commit 1208d731ca
7 changed files with 54 additions and 12 deletions
+3 -1
View File
@@ -8,5 +8,7 @@
"street": "Straße + Haus Nr.",
"postal-code": "Plz + Stadt",
"email": "E-Mail",
"submit": "Kaufen"
"submit": "Kaufen",
"failed-to-load-users": "Das Laden der Benutzer ist fehlgeschlagen.",
"user": "Benutzer"
}
+3 -1
View File
@@ -8,5 +8,7 @@
"street": "Street + House No.",
"postal-code": "Postal Code + City",
"email": "Email",
"submit": "Buy"
"submit": "Buy",
"failed-to-load-users": "Failed to load users.",
"user": "User"
}
-1
View File
@@ -12,7 +12,6 @@ interface FormData {
street: string;
postalCode: string;
paymentMethod: string;
code: string;
}
export const submitFormData = async (data: FormData) => {