Fix issue with server build.

This commit is contained in:
Mike Cao 2021-04-28 02:12:17 -07:00
parent a22f22a8ba
commit 5f41447158

View File

@ -5,7 +5,12 @@ import { THEME_CONFIG } from 'lib/constants';
import { useEffect } from 'react';
export default function useTheme() {
const defaultTheme = window?.matchMedia('prefers-color-scheme: dark')?.matches ? 'dark' : 'light';
const defaultTheme =
typeof window !== undefined
? window?.matchMedia('prefers-color-scheme: dark')?.matches
? 'dark'
: 'light'
: 'light';
const theme = useSelector(state => state.app.theme || getItem(THEME_CONFIG) || defaultTheme);
const dispatch = useDispatch();