Fix disable checks.

This commit is contained in:
Mike Cao 2022-10-28 10:34:50 -07:00
parent 98835bbc78
commit 246e4e5f4f
4 changed files with 10 additions and 10 deletions

View file

@ -24,7 +24,7 @@ export default function App({ Component, pageProps }) {
const { basePath } = useRouter();
const { dir } = useLocale();
if (!process.env.uiDisabled) {
if (process.env.uiDisabled) {
return null;
}