Skip to content

Commit

Permalink
remove validate check from resolvetype
Browse files Browse the repository at this point in the history
  • Loading branch information
HorizonCode committed Mar 7, 2024
1 parent 42f2a65 commit 9a6c310
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions setup/wizard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,6 @@ export const runSetupWizard = async (config: Config) => {
"Do you want to enter your Quests IP Address and Port manually or use the auto-discovery feature?",
name: "resolve_type",
choices: setupTypes,
validate: (value: string) => {
if (value == setupTypes[0].name) {
return "Auto-Discovery is not yet implemented!";
}
return true;
},
}]);
if (resolve_type == setupTypes[0].name) {
const resolved = await resolveQuestFromLocalNetwork();
Expand Down

0 comments on commit 9a6c310

Please sign in to comment.