Browse Source

Revert "Fix & Refactor UI/UX Page [Auth]"

This reverts commit d76e744eabe181bf9ce04effb48547427f63c7bb.

Reason: Move to commits bf5e7aaa484c42201178830d82d126f76ee55ed2
H0llyW00dzZ 1 year ago
parent
commit
7df868e22a
1 changed files with 1 additions and 5 deletions
  1. 1 5
      app/components/auth.tsx

+ 1 - 5
app/components/auth.tsx

@@ -24,12 +24,8 @@ export function AuthPage() {
   }; // Reset access code to empty string
 
   useEffect(() => {
-    const clientConfig = getClientConfig();
-    if (clientConfig?.isApp) { // Force to set custom endpoint to true if it's app
+    if (getClientConfig()?.isApp) {
       navigate(Path.Settings);
-      accessStore.update((state) => {
-        state.useCustomConfig = true;
-      });
     }
     // eslint-disable-next-line react-hooks/exhaustive-deps
   }, []);