From 0ee653f631d4e8572673bd2b000b93a57484982d Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 2 Jun 2025 10:14:56 -0500 Subject: [PATCH] Make light theme the default --- src/components/ThemeProvider.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ThemeProvider.tsx b/src/components/ThemeProvider.tsx index 078d4c3..592ae0e 100644 --- a/src/components/ThemeProvider.tsx +++ b/src/components/ThemeProvider.tsx @@ -2,14 +2,14 @@ import { useEffect, useState } from "react" import { type Theme, ThemeContext } from "@/lib/ThemeContext" type ThemeProviderProps = { - children: React.ReactNode - defaultTheme?: Theme - storageKey?: string + children: React.ReactNode; + defaultTheme?: Theme; + storageKey?: string; } export function ThemeProvider({ children, - defaultTheme = "system", + defaultTheme = "light", storageKey = "theme", ...props }: ThemeProviderProps) {