We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 125b63d commit 164546aCopy full SHA for 164546a
packages/cli/src/commands/connect.ts
@@ -376,7 +376,7 @@ export function connectCommand(): Command {
376
envValue: process.env.SETTLEMINT_USER_WALLET,
377
cliParamValue: userWallet,
378
configValue: configApplication?.userWallet,
379
- validate: (value) => !!new URL(value ?? "").toString(),
+ validate: (value) => !!value?.trim(),
380
message: "Select a HD private key to manage your user wallets",
381
existingMessage: "A valid HD private key for user wallets is already provided. Do you want to change it?",
382
});
0 commit comments