fix(themes): all and subscriptions multiboards should use yotsuba

This commit is contained in:
plebeius
2025-11-08 15:27:25 +01:00
parent f997365813
commit 9cc78694d8
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -62,7 +62,7 @@ const useTheme = (): [string, (theme: string) => void] => {
let storedTheme = null;
if (isInAllView || isInSubscriptionsView || isInModView) {
storedTheme = themes.sfw;
storedTheme = themes.nsfw;
} else if (subplebbitAddress) {
const subplebbit = subplebbits.find((s) => s.address === subplebbitAddress);
if (subplebbit?.nsfw) {
@@ -83,7 +83,7 @@ const useTheme = (): [string, (theme: string) => void] => {
const setSubplebbitTheme = useCallback(
async (newTheme: string) => {
if (isInAllView || isInSubscriptionsView || isInModView) {
await setThemeStore('sfw', newTheme);
await setThemeStore('nsfw', newTheme);
} else if (subplebbitAddress) {
const subplebbit = subplebbits.find((s) => s.address === subplebbitAddress);
if (subplebbit?.nsfw) {