From 9cee3934e89e65dea9d12e77bbd98a2f25cb909a Mon Sep 17 00:00:00 2001 From: shadcn Date: Sat, 14 Dec 2024 14:42:04 +0400 Subject: [PATCH] fix: set new-york as default --- apps/www/hooks/use-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/hooks/use-config.ts b/apps/www/hooks/use-config.ts index 1fd3549f906..8f0b26b2feb 100644 --- a/apps/www/hooks/use-config.ts +++ b/apps/www/hooks/use-config.ts @@ -11,7 +11,7 @@ type Config = { } const configAtom = atomWithStorage("config", { - style: "default", + style: "new-york", theme: "zinc", radius: 0.5, })