diff --git a/src/stores.ts b/src/stores.ts index cab974e..0885e85 100644 --- a/src/stores.ts +++ b/src/stores.ts @@ -8,6 +8,7 @@ export const locationStore = z lat: z.number().min(-90).max(90), lng: z.number().min(-180).max(180), name: z.string().min(1).max(100), + icon: z.string().min(1).max(100).optional(), }) .strict();