Skip to content

Commit 50bd6a7

Browse files
jjarvispjosefaidt
andauthored
Apply suggestions from code review
Co-authored-by: josef <[email protected]>
1 parent b3488dd commit 50bd6a7

File tree

2 files changed

+6
-2
lines changed
  • src/pages/[platform]/build-a-backend/auth

2 files changed

+6
-2
lines changed

src/pages/[platform]/build-a-backend/auth/concepts/multi-factor-authentication/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ If you are using the [Authenticator component](https://ui.docs.amplify.aws/andro
887887
</Callout>
888888
</InlineFilter>
889889

890-
Once you have setup email as your second layer of authentication with MFA as shown above, your users will get an authentication code via an email to complete sign-in after they sign in with their username and password.
890+
Once you have setup email as your second layer of authentication with MFA as shown above, your users will get an authentication code via email to complete sign-in after they sign in with their username and password.
891891

892892
<Callout warning>
893893

src/pages/[platform]/build-a-backend/auth/multi-step-sign-in/index.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2207,7 +2207,11 @@ func confirmSignIn(totpCode: String) -> AnyCancellable {
22072207
## Confirm signin with Email MFA
22082208
If the next step is `confirmSignInWithOTP`, Amplify Auth has sent a random code to the user's email address, and is waiting to find out if the user successfully received it. To handle this step, your app's UI must prompt the user to enter the code. After the user enters the code, your implementation must pass the value to Amplify Auth `confirmSignIn` API.
22092209

2210-
Note: the signin result also includes an `AuthCodeDeliveryDetails` member. It includes additional information about the code delivery such as the partial email address of the recipient.
2210+
<Callout info>
2211+
2212+
**Note:** the sign-in result also includes an `AuthCodeDeliveryDetails` member. It includes additional information about the code delivery such as the partial email address of the recipient.
2213+
2214+
</Callout>
22112215

22122216
<BlockSwitcher>
22132217

0 commit comments

Comments
 (0)