Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/components/Sidebar/Sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ import { useNavigate } from 'react-router-dom';
function Sidebar() {
const navigate = useNavigate();
const [theme, setTheme] = useState(() => {
const storedTheme = JSON.parse(localStorage.getItem('theme'));
return storedTheme || (document.documentElement.classList.contains('dark') ? 'dark' : 'light');
const storedTheme = localStorage.getItem('theme');

// Check if storedTheme is valid
if (storedTheme) {
// If it's a string, return it directly (no need to parse)
return storedTheme; // This will return "dark" or "light" directly
}

// Fallback to the current class on the document element
return document.documentElement.classList.contains('dark') ? 'dark' : 'light';
});

useEffect(() => {
Expand Down
Loading