🌍 i18n: Add multi-language support for Terms of Service and update modal content

This commit is contained in:
Ruben Talstra 2025-03-10 09:28:28 +01:00
parent 9db00edfc4
commit b7a6d7caa6
No known key found for this signature in database
GPG key ID: 2A5A7174A60F3BEA
9 changed files with 172 additions and 66 deletions

View file

@ -454,7 +454,6 @@ const termsOfServiceSchema = z.object({
openNewTab: z.boolean().optional(),
modalAcceptance: z.boolean().optional(),
modalTitle: z.string().optional(),
modalContent: z.string().or(z.array(z.string())).optional(),
});
export type TTermsOfService = z.infer<typeof termsOfServiceSchema>;