Skip to content

Commit 3708415

Browse files
committed
fix: improve error message for account connection in AuthProvider
1 parent 4b50288 commit 3708415

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/providers/AuthProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const AuthProvider = ({ children }: { children: React.ReactNode }) => {
8383
if (error && error.code === 'auth/account-exists-with-different-credential') {
8484
setAuthError({
8585
message:
86-
'You have an account with a different provider. Please sign in with that provider to continue.',
86+
'This account is already connected with a different provider. Please sign in with that provider to continue.',
8787
})
8888
} else {
8989
setAuthError({

0 commit comments

Comments
 (0)