Skip to content

Commit

Permalink
chore: fix lint failure
Browse files Browse the repository at this point in the history
  • Loading branch information
hetangmodi-crest committed Sep 18, 2024
1 parent e8789dd commit 6a7f499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/types/globalConfig/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const meta = z.object({
checkForUpdates: z.boolean().default(true).optional(),
searchViewDefault: z.boolean().default(false).optional(),
isVisible: z.boolean().default(true).optional(),
supportedThemes:z.array(z.string()).optional()
supportedThemes: z.array(z.string()).optional(),
});

export type meta = z.infer<typeof meta>;

0 comments on commit 6a7f499

Please sign in to comment.