Преглед на файлове

Feat UI/UX Page [Settings]

- [+] feat(settings.tsx): set useCustomConfig to true if clientConfig.isApp is truthy
H0llyW00dzZ преди 1 година
родител
ревизия
bf5e7aaa48
променени са 1 файла, в които са добавени 5 реда и са изтрити 0 реда
  1. 5 0
      app/components/settings.tsx

+ 5 - 0
app/components/settings.tsx

@@ -635,6 +635,11 @@ export function Settings() {
         navigate(Path.Home);
       }
     };
+    if (clientConfig?.isApp) { // Force to set custom endpoint to true if it's app
+      accessStore.update((state) => {
+        state.useCustomConfig = true;
+      });
+    }
     document.addEventListener("keydown", keydownEvent);
     return () => {
       document.removeEventListener("keydown", keydownEvent);