feat: add trusted URLs

This commit is contained in:
Stavros
2025-04-15 13:44:23 +03:00
parent 7413b3f931
commit e11d14fda0
8 changed files with 57 additions and 15 deletions

View File

@@ -5,6 +5,7 @@ export const appContextSchema = z.object({
disableContinue: z.boolean(),
title: z.string(),
genericName: z.string(),
domain: z.string(),
});
export type AppContextSchemaType = z.infer<typeof appContextSchema>;