We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93bea39 commit c3f4855Copy full SHA for c3f4855
.github/workflows/push-integ-test.yml
@@ -8,7 +8,7 @@ concurrency:
8
on:
9
push:
10
branches:
11
- - feat/email-mfa
+ - replace-with-your-branch
12
13
jobs:
14
e2e:
packages/auth/src/providers/cognito/utils/signInHelpers.ts
@@ -227,7 +227,7 @@ export async function handleMFASetupChallenge({
227
);
228
}
229
230
- const isEmail = /^\S+@\S+\.\S+$/.test(challengeResponse.trim());
+ const isEmail = /^\S+@\S+$/.test(challengeResponse.trim());
231
232
if (isEmail) {
233
challengeResponses.EMAIL = challengeResponse;
0 commit comments