Let type also be undefined
This commit is contained in:
parent
22d5505a2b
commit
028b96e4c5
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ export class Registration {
|
|||
throw new Error("flowSelector did not return any flow!");
|
||||
}
|
||||
let firstStage: BaseRegistrationStage | undefined;
|
||||
let lastStage: BaseRegistrationStage;
|
||||
let lastStage: BaseRegistrationStage | undefined;
|
||||
for (const stage of flow.stages) {
|
||||
const registrationStage = this._createRegistrationStage(stage, session, params);
|
||||
if (!firstStage) {
|
||||
|
|
Reference in a new issue