default have chat enabled
This commit is contained in:
parent
8801efc9a3
commit
099713dd50
|
@ -35,7 +35,11 @@ export const AppContext = ({ children }: PropsWithChildren) => {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
function loadSettings() {
|
function loadSettings() {
|
||||||
setLoadChat(localStorage.getItem("matrix.enable") === "true");
|
setLoadChat(
|
||||||
|
localStorage.getItem("matrix.enable") === null
|
||||||
|
? true
|
||||||
|
: localStorage.getItem("matrix.enable") === "true"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleConfig(config: ClientConfig) {
|
function handleConfig(config: ClientConfig) {
|
||||||
|
|
Loading…
Reference in New Issue