Skip to content

Commit

Permalink
fix: nil pointer after registration
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoern-m committed Jul 30, 2024
1 parent c117bbf commit 1d004e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/flow_api/flow/flows.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ var RegistrationFlow = flowpilot.NewFlow(shared.FlowRegistration).
shared.StateRegistrationInit).
ErrorState(shared.StateError).
BeforeState(shared.StateSuccess,
shared.GetUserData{},
registration.CreateUser{},
shared.IssueSession{},
shared.GetUserData{}).
shared.IssueSession{}).
SubFlows(
CapabilitiesSubFlow,
CredentialUsageSubFlow,
Expand Down

0 comments on commit 1d004e3

Please sign in to comment.