|
@@ -36,7 +36,7 @@ function AppContent({ children }: { children: ReactNode }): JSX.Element {
|
|
|
const { messages, loading, error, currentLocale } = useAppSelector(
|
|
|
(state) => state.i18n
|
|
|
);
|
|
|
- const [currentTheme, setCurrentTheme] = useState(lightTheme); // 默认使用 light 主题
|
|
|
+ const [currentTheme, setCurrentTheme] = useState(darkTheme); // 默认使用 light 主题
|
|
|
const [isI18nReady, setIsI18nReady] = useState(false);
|
|
|
|
|
|
useLaunch((): void => {
|