From 286ef75a8717f9d74b212fe972cb94163f600f46 Mon Sep 17 00:00:00 2001 From: JoonWon Choi <13882232+joon-won@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:07:32 -0800 Subject: [PATCH 1/2] Rebase with resumablesignin --- .../auth/connect-your-frontend/sign-in/index.mdx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-in/index.mdx b/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-in/index.mdx index 5f23407352f..f633b3ab53d 100644 --- a/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-in/index.mdx +++ b/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-in/index.mdx @@ -707,6 +707,11 @@ if (nextStep.signInStep === "CONTINUE_SIGN_IN_WITH_TOTP_SETUP") { } ``` + + +**Note:** The Amplify authentication flow will persist relevant session data throughout the lifespan of a page session, enabling the `confirmSignIn` API to be leveraged even after a full page refresh in a multi-page application, such as when redirecting from a login page to a sign in confirmation page + + From f1542492b5fdf2265769691f8c8fe7b2829de7ed Mon Sep 17 00:00:00 2001 From: Joon Choi <13882232+joon-won@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:25:11 -0800 Subject: [PATCH 2/2] Update src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-in/index.mdx Co-authored-by: James Jarvis --- .../auth/connect-your-frontend/sign-in/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-in/index.mdx b/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-in/index.mdx index f633b3ab53d..78262044ba2 100644 --- a/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-in/index.mdx +++ b/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-in/index.mdx @@ -709,7 +709,7 @@ if (nextStep.signInStep === "CONTINUE_SIGN_IN_WITH_TOTP_SETUP") { ``` -**Note:** The Amplify authentication flow will persist relevant session data throughout the lifespan of a page session, enabling the `confirmSignIn` API to be leveraged even after a full page refresh in a multi-page application, such as when redirecting from a login page to a sign in confirmation page +**Note:** The Amplify authentication flow will persist relevant session data throughout the lifespan of a page session. This enables the `confirmSignIn` API to be leveraged even after a full page refresh in a multi-page application, such as when redirecting from a login page to a sign in confirmation page.