Fix Login Page and add Jahresplan
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-01-20 19:21:21 +01:00
parent 0a6c61bd88
commit 628599f019
6 changed files with 31 additions and 5 deletions

View File

@@ -50,3 +50,10 @@ export const ServerSchema = z.object({
});
export type Server = z.infer<typeof ServerSchema>;
export const ResponseErrorSchema = z.object({
error: z.string(),
code: z.string(),
});
export type ResponseError = z.infer<typeof ResponseErrorSchema>;