Browse Source

disable lightmode as default

AykutSarac 2 years ago
parent
commit
2f202c71ce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/hooks/store/useStored.tsx

+ 1 - 1
src/hooks/store/useStored.tsx

@@ -28,7 +28,7 @@ export interface Config {
 const useStored = create(
   persist<Config>(
     (set) => ({
-      lightmode: true,
+      lightmode: false,
       sponsors: {
         users: [],
         nextDate: Date.now(),