We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3995354 commit 86b0cc2Copy full SHA for 86b0cc2
1 file changed
components/ProfilePage/VerifyAccountSection.tsx
@@ -18,9 +18,7 @@ export const VerifyAccountSection = ({
18
return (
19
<TitledSectionCard title={"Verify Your Account"} className={className}>
20
<div>
21
- <p className="fw-bold text-info">
22
- {t("verifyAccountSection.verifyAccount")}
23
- </p>
+ <p className="fw-bold">{t("verifyAccountSection.verifyAccount")}</p>
24
25
{sendEmailVerification.status === "success" ? (
26
<Alert variant="success">
@@ -35,7 +33,7 @@ export const VerifyAccountSection = ({
35
33
36
34
{sendEmailVerification.status !== "success" ? (
37
<LoadingButton
38
- variant="info"
+ variant="secondary"
39
className="text-white"
40
loading={sendEmailVerification.loading}
41
onClick={() => sendEmailVerification.execute(user)}
0 commit comments