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 98415ba commit c5e2a7cCopy full SHA for c5e2a7c
aws-auth-cognito/src/main/java/com/amplifyframework/statemachine/codegen/states/SignInState.kt
@@ -278,6 +278,10 @@ internal sealed class SignInState : State {
278
is SignInEvent.EventType.FinalizeSignIn -> {
279
StateResolution(SignedIn())
280
}
281
+ is SignInEvent.EventType.ConfirmDevice -> {
282
+ val action = signInActions.confirmDevice(signInEvent)
283
+ StateResolution(ConfirmingDevice(), listOf(action))
284
+ }
285
is SignInEvent.EventType.ThrowError -> StateResolution(Error(signInEvent.exception))
286
287
else -> defaultResolution
0 commit comments