From aff447e74191446f03f72bb6562769ac0a764de9 Mon Sep 17 00:00:00 2001 From: Jannik Date: Mon, 29 Sep 2025 19:00:47 +0200 Subject: [PATCH] style: run prettier --- src/stores.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores.ts b/src/stores.ts index c41423a..9e794e0 100644 --- a/src/stores.ts +++ b/src/stores.ts @@ -81,7 +81,7 @@ export type SyncPayload = z.infer; export function verifyStoreData(type: StoreType, data: string) { const schema = storeTypes[type]; if (!schema) return false; - if(data === "null") return true; // allow null data + if (data === "null") return true; // allow null data try { const parsedData = JSON.parse(data); schema.parse(parsedData);