Skip to content

Commit

Permalink
UI bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pakzadjs committed Mar 27, 2024
1 parent 1e50323 commit 69ec0b4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/app/(user)/auth/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ export default function AuthPage() {
setTime(RESEND_TIME);
setOtp("");
} catch (error) {
toast.error(error?.response?.data?.message || "خطایی رخ داده، یکم دیرتر امتحان کن");
toast.error(
error?.response?.data?.message || "خطایی رخ داده، یکم دیرتر امتحان کن"
);
}
};

Expand All @@ -73,7 +75,9 @@ export default function AuthPage() {
router.push("/complete-profile");
}
} catch (error) {
toast.error(error?.response?.data?.message || "خطایی رخ داده، یکم دیرتر امتحان کن");
toast.error(
error?.response?.data?.message || "خطایی رخ داده، یکم دیرتر امتحان کن"
);
}
};

Expand Down Expand Up @@ -130,7 +134,7 @@ export default function AuthPage() {
alt="Hero Image"
width={1980}
height={1320}
className="w-full blur-[2px] absolute left-0 top-0 pointer-events-none z-0"
className="w-full blur-[2px] absolute left-0 top-0 pointer-events-none z-0 hidden xl:block"
/>

<div className="flex justify-center relative">
Expand Down

0 comments on commit 69ec0b4

Please sign in to comment.