From 2fe35585606558d83900a0f5132cb306fa3adaac Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 26 Jan 2024 23:42:30 +0100 Subject: [PATCH] changed --- src/Pages/Store/Calendar/Auth/index.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/Pages/Store/Calendar/Auth/index.js b/src/Pages/Store/Calendar/Auth/index.js index ead9499..a4d3ca8 100644 --- a/src/Pages/Store/Calendar/Auth/index.js +++ b/src/Pages/Store/Calendar/Auth/index.js @@ -1,4 +1,4 @@ -import { Button, Result, Spin, notification } from "antd"; +import { Button, Result, Spin, Typography, notification } from "antd"; import { Link, useParams, useNavigate } from "react-router-dom"; import { Constants, myFetch } from "../../../../utils"; import { useEffect, useState } from "react"; @@ -91,10 +91,8 @@ function CountdownRedirect({ storeId }) { }, [count, navigate]); return ( - <> -

- {t("calendar.authFinish.countDownRedirect", { countDown: count })} -

- + + {t("calendar.authFinish.countDownRedirect", { countDown: count })} + ); }