From cf70a45c88444065d4445feef8ce554e3484b8df Mon Sep 17 00:00:00 2001 From: farnoosh-krm Date: Tue, 24 Feb 2026 17:28:16 +0330 Subject: [PATCH] fixed --- src/pages/login/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/login/index.tsx b/src/pages/login/index.tsx index 40bd3966..6469338e 100644 --- a/src/pages/login/index.tsx +++ b/src/pages/login/index.tsx @@ -5,6 +5,7 @@ import { version } from "@package.json"; import { useCheckOTP, useLoginUser } from "@/services/Account"; import OTPForm from "@/components/OTPFormLogin"; import { newAppointmentRoutes } from "@/apps/new-ui/routes"; +import { BeatLoader } from "react-spinners"; const Login = () => { const { currectAccount } = useMultiAccounts(); @@ -22,6 +23,9 @@ const Login = () => { // } if (currectAccount && return_url) { window.location.replace(`${return_url}?auth=${currectAccount.authToken}`); + return
+ +
} return ; }