From 537c10a0319da0d8c0ce18e8da8e150c0416b0ab Mon Sep 17 00:00:00 2001 From: sksabircn Date: Tue, 20 Oct 2020 06:30:27 +0530 Subject: [PATCH 1/2] fix: fix typo in SignIn.vue (#6921) Forget your password? the text has a typo --- .../aws-amplify-vue/src/components/authenticator/SignIn.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-amplify-vue/src/components/authenticator/SignIn.vue b/packages/aws-amplify-vue/src/components/authenticator/SignIn.vue index 98e5babd323..50ed07bf7ad 100644 --- a/packages/aws-amplify-vue/src/components/authenticator/SignIn.vue +++ b/packages/aws-amplify-vue/src/components/authenticator/SignIn.vue @@ -23,7 +23,7 @@
{{$Amplify.I18n.get('Password')}} *
- {{$Amplify.I18n.get('Forget your password? ')}} + {{$Amplify.I18n.get('Forgot your password? ')}} {{$Amplify.I18n.get('Reset password')}}
From 5809027a64616d07ef93ff9f1e2d832d408b51be Mon Sep 17 00:00:00 2001 From: Jonas Soderholm Date: Mon, 22 Feb 2021 18:53:00 +0000 Subject: [PATCH 2/2] Added userConfirmationNecessary to sendMFACode --- packages/amazon-cognito-identity-js/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/amazon-cognito-identity-js/index.d.ts b/packages/amazon-cognito-identity-js/index.d.ts index ada0fd3ff05..0fdf1763dc5 100644 --- a/packages/amazon-cognito-identity-js/index.d.ts +++ b/packages/amazon-cognito-identity-js/index.d.ts @@ -164,7 +164,7 @@ declare module 'amazon-cognito-identity-js' { public sendMFACode( confirmationCode: string, callbacks: { - onSuccess: (session: CognitoUserSession) => void; + onSuccess: (session: CognitoUserSession, userConfirmationNecessary?: boolean) => void; onFailure: (err: any) => void; }, mfaType?: string,