From 94b4de49206e48b9c6b9500994c0c0713fd596a0 Mon Sep 17 00:00:00 2001 From: Jannik Date: Fri, 3 Oct 2025 15:17:35 +0200 Subject: [PATCH] feat(stores): location stores --- src/stores.ts | 1 + 1 file changed, 1 insertion(+) 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();