We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54ddde3 commit ab5fab0Copy full SHA for ab5fab0
src/features/auth/components/AuthModal.tsx
@@ -35,6 +35,11 @@ export const AuthModal = ({ showAuth }: AuthModalProps) => {
35
.then(({ authLink }) => {
36
window.open(authLink, BUILD_TARGET === 'web' ? '_self' : '_blank')
37
})
38
+ .catch(() => {
39
+ setAuthError({
40
+ message: 'Something went wrong, Please try again',
41
+ })
42
43
},
44
[getOauthLink]
45
)
0 commit comments