Merge pull request #1857 from LalitDeore/ui-fix

fix minor UI issue
This commit is contained in:
Frikky
2025-11-12 11:39:33 +01:00
committed by GitHub
2 changed files with 31 additions and 0 deletions
+3
View File
@@ -15,6 +15,7 @@ export const AppContext = (props) => {
const [windowWidth, setWindowWidth] = useState(serverside === true ? 100 : window.innerWidth);
const [brandColor, setBrandColor] = useState(() => localStorage.getItem("brandColor") || "#ff8544");
const [brandName, setBrandName] = useState(()=> localStorage.getItem("brandName") || "Shuffle");
const [updateOrg, setUpdateOrg] = useState(false);
const [themeMode, setThemeMode] = useState(
() => localStorage.getItem("theme") || "dark"
@@ -117,6 +118,8 @@ export const AppContext = (props) => {
setBrandColor,
brandName,
setBrandName,
updateOrg,
setUpdateOrg,
}}>
{props.children}
</Context.Provider>