master
alex 2024-01-26 23:42:30 +01:00
parent 26b30b47cd
commit 2fe3558560
1 changed files with 4 additions and 6 deletions

View File

@ -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 (
<>
<p style={{ paddingTop: 10, color: "#8c8c8c" }}>
{t("calendar.authFinish.countDownRedirect", { countDown: count })}
</p>
</>
<Typography.Text type="secondary" style={{ paddingTop: 10 }}>
{t("calendar.authFinish.countDownRedirect", { countDown: count })}
</Typography.Text>
);
}