Skip to content

Commit abe60df

Browse files
committed
fix(eng-4621): Use default badge variant
1 parent 9cf4b1b commit abe60df

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

frontend/src/pages/auth/LoginPage/components/InitialStep/InitialStep.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ export const InitialStep = ({
337337
Continue with Email
338338
</Button>
339339
{isLastUsedMethod(LoginMethod.EMAIL) && (
340-
<Badge variant="info" className="absolute -top-2 -right-2 rounded-full">
340+
<Badge variant="default" className="absolute -top-2 -right-2 rounded-full">
341341
Last used
342342
</Badge>
343343
)}

frontend/src/pages/auth/LoginPage/components/OrgLoginButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const OrgLoginButton = ({ label, onClick, className, showLastUsed }: Prop
2929
{label}
3030
</Button>
3131
{showLastUsed && (
32-
<Badge variant="info" className="absolute -top-2 -right-2 rounded-full">
32+
<Badge variant="default" className="absolute -top-2 -right-2 rounded-full">
3333
Last used
3434
</Badge>
3535
)}

frontend/src/pages/auth/LoginPage/components/SocialLoginButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const SocialLoginButton = ({ icon, label, onClick, showLastUsed }: Props)
2424
<FontAwesomeIcon icon={icon} />
2525
</IconButton>
2626
{showLastUsed && (
27-
<Badge variant="info" className="absolute -top-2 -right-2 rounded-full">
27+
<Badge variant="default" className="absolute -top-2 -right-2 rounded-full">
2828
Last used
2929
</Badge>
3030
)}

0 commit comments

Comments
 (0)