Skip to content

Commit

Permalink
馃 Correct error message on invalid credentials (Joystream#5928)
Browse files Browse the repository at this point in the history
  • Loading branch information
WRadoslaw committed Feb 27, 2024
1 parent acf2223 commit 1c203d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/atlas/src/components/_auth/LogInModal/LogInModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ export const LogInModal = () => {
} catch (error) {
if (error.message === LogInErrors.ArtifactsNotFound) {
displaySnackbar({
title: `We can't find ${atlasConfig.general.appName} membership associated with this email`,
description: `Make sure that you are using the same email that you used to create your membership on ${atlasConfig.general.appName}.`,
title: `We can't find ${atlasConfig.general.appName} membership associated with these credentials`,
description: `Make sure that you are using the same email and password that you used to create your membership on ${atlasConfig.general.appName}.`,
iconType: 'error',
})
setError('email', { type: 'custom', message: 'Incorrect email or password.' })
Expand Down

0 comments on commit 1c203d1

Please sign in to comment.