From b4cbc15c6bf8a12e3f7ba43e4c819e205c9046dc Mon Sep 17 00:00:00 2001 From: Joon Choi <13882232+joon-won@users.noreply.github.com> Date: Tue, 7 Jan 2025 14:11:20 -0800 Subject: [PATCH] feat(auth): Introduce resumable signin guide for the AmplifyJS (#7976) * Update Docs with contents of resumable sign in feature Co-authored-by: James Jarvis --- .../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..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 @@ -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. 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. + +