Skip to content

Commit

Permalink
Remove Custom Confirmation Prompt (#146)
Browse files Browse the repository at this point in the history
wbaldoumas authored Feb 15, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 67dc5e7 commit 2c6b8e6
Showing 2 changed files with 2 additions and 91 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -185,7 +185,7 @@ private string PromptForMutationName(LoadedConvertCommandSettings initialLoadedC

private bool PromptForExcludeQueriesChoice(LoadedConvertCommandSettings initialLoadedConvertCommandSettings) =>
_ansiConsole.Prompt(
new ConfirmationPromptWithStyling("Exclude queries from the generated Karate feature?")
new ConfirmationPrompt("Exclude queries from the generated Karate feature?")
{
DefaultValue = initialLoadedConvertCommandSettings.ExcludeQueries,
DefaultValueStyle = InfoStyle,
@@ -195,7 +195,7 @@ private bool PromptForExcludeQueriesChoice(LoadedConvertCommandSettings initialL

private bool PromptForIncludeMutationsChoice(LoadedConvertCommandSettings initialLoadedConvertCommandSettings) =>
_ansiConsole.Prompt(
new ConfirmationPromptWithStyling("Include mutations in the generated Karate feature?")
new ConfirmationPrompt("Include mutations in the generated Karate feature?")
{
DefaultValue = initialLoadedConvertCommandSettings.IncludeMutations,
DefaultValueStyle = InfoStyle,

0 comments on commit 2c6b8e6

Please sign in to comment.