market popout height fixed

This commit was merged in pull request #867.
This commit is contained in:
victorAnumudu
2025-07-14 17:48:32 +01:00
parent 2bf8b2fe06
commit 7f534556be
4 changed files with 10 additions and 12 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
apiCall
.loadProfile()
.then((res) => {
if (res?.data?.internal_return < 0) {
if (!res?.data?.internal_return || res?.data?.internal_return < 0) {
setIsLogin({ loading: false, status: false });
return;
}