Skip to content

Commit bb3f5d8

Browse files
committed
refactor: update button labels in AuthModal to clarify last used provider
1 parent a05af28 commit bb3f5d8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/features/auth/components/AuthModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export const AuthModal = ({ showAuth }: AuthModalProps) => {
9898
}}
9999
className="relative"
100100
size="medium">
101-
{providerId === 'github.com' && <span className="lastFlag">Last</span>}
101+
{providerId === 'github.com' && <span className="lastFlag">Last used</span>}
102102
Connect with Github
103103
</Button>
104104
<Button
@@ -107,7 +107,7 @@ export const AuthModal = ({ showAuth }: AuthModalProps) => {
107107
onClick={() => signIn(googleAuthProvider)}
108108
className="relative"
109109
size="medium">
110-
{providerId === 'google.com' && <span className="lastFlag">Last</span>}
110+
{providerId === 'google.com' && <span className="lastFlag">Last used</span>}
111111
Connect with Google
112112
</Button>
113113
</div>

0 commit comments

Comments
 (0)