Skip to content

Commit 86b0cc2

Browse files
authored
Verify Email - Loading Button (#2071)
* update color styling * removed color styling on text, results in black text
1 parent 3995354 commit 86b0cc2

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

components/ProfilePage/VerifyAccountSection.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ export const VerifyAccountSection = ({
1818
return (
1919
<TitledSectionCard title={"Verify Your Account"} className={className}>
2020
<div>
21-
<p className="fw-bold text-info">
22-
{t("verifyAccountSection.verifyAccount")}
23-
</p>
21+
<p className="fw-bold">{t("verifyAccountSection.verifyAccount")}</p>
2422

2523
{sendEmailVerification.status === "success" ? (
2624
<Alert variant="success">
@@ -35,7 +33,7 @@ export const VerifyAccountSection = ({
3533

3634
{sendEmailVerification.status !== "success" ? (
3735
<LoadingButton
38-
variant="info"
36+
variant="secondary"
3937
className="text-white"
4038
loading={sendEmailVerification.loading}
4139
onClick={() => sendEmailVerification.execute(user)}

0 commit comments

Comments
 (0)