Skip to content

Commit dbce2da

Browse files
committed
Fix build error
1 parent c1fd555 commit dbce2da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/createFunction/promptStepsV2/NewFileStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class NewFileStep<T extends FunctionV2WizardContext> extends StringInputS
3636
}
3737

3838
protected async validateInputCore(context: FunctionV2WizardContext, input: string | undefined): Promise<string | undefined> {
39-
const error = super.validateInput(input);
39+
const error = super.validateInput(input, this.input);
4040
if (error) {
4141
return error;
4242
}

0 commit comments

Comments
 (0)