Remove nonsense ref

This commit is contained in:
Marcos Rios 2024-02-22 23:55:07 -03:00
parent 3522f6c038
commit ac9d347a26
No known key found for this signature in database
GPG Key ID: BDCAE71F56B79383

View File

@ -105,8 +105,6 @@ export function SettingsPage() {
const setTheme = useThemeStore((s) => s.setTheme);
const previewTheme = usePreviewThemeStore((s) => s.previewTheme) ?? "default";
const setPreviewTheme = usePreviewThemeStore((s) => s.setPreviewTheme);
const activeThemeRef = useRef(activeTheme);
activeThemeRef.current = activeTheme;
const appLanguage = useLanguageStore((s) => s.language);
const setAppLanguage = useLanguageStore((s) => s.setLanguage);
@ -147,11 +145,10 @@ export function SettingsPage() {
enableThumbnails,
);
// Reset the preview theme when the settings page is unmounted
useEffect(
() => () => {
setPreviewTheme(
activeThemeRef.current === "default" ? null : activeThemeRef.current,
);
setPreviewTheme(null);
},
[setPreviewTheme],
);