Skip to content

Commit

Permalink
removed extra param in one method for test
Browse files Browse the repository at this point in the history
  • Loading branch information
SOOS-JAlvarez committed Nov 8, 2023
1 parent 4e8ffd9 commit 3a4c46b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class SOOSDASTAnalysis {
help: "Submit action to perform on form filled. Options: click or submit.",
required: false,
type: (value: string) => {
return ensureEnumValue(SubmitActions, value, "Click");
return ensureEnumValue(SubmitActions, value);
},
});

Expand Down

0 comments on commit 3a4c46b

Please sign in to comment.