Skip to content

Commit

Permalink
Fix regression DEV-1900
Browse files Browse the repository at this point in the history
ref DEV-1900
  • Loading branch information
louischan-oursky committed Aug 26, 2024
2 parents 5c08f40 + 489dc1c commit a0f4eab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/auth/webapp/session_authflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ func (TakeBranchResultSimple) takeBranchResult() {}
type TakeBranchResultInputRetryHandler func(err error) (nextInput interface{})

type TakeBranchResultInput struct {
Input interface{}
Input map[string]interface{}
NewAuthflowScreenFull func(flowResponse *authflow.FlowResponse, retriedForError error) *AuthflowScreenWithFlowResponse
OnRetry *TakeBranchResultInputRetryHandler
}
Expand Down Expand Up @@ -837,7 +837,7 @@ func (s *AuthflowScreenWithFlowResponse) takeBranchCreateAuthenticator(input *Ta
options.DisableFallbackToSMS,
)
return TakeBranchResultInput{
Input: input,
Input: resultInput,
NewAuthflowScreenFull: func(flowResponse *authflow.FlowResponse, retriedForError error) *AuthflowScreenWithFlowResponse {
isContinuation := func(flowResponse *authflow.FlowResponse) bool {
return flowResponse.Action.Type == authflow.FlowActionType(config.AuthenticationFlowSignupFlowStepTypeCreateAuthenticator) &&
Expand Down

0 comments on commit a0f4eab

Please sign in to comment.