We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0df5330 commit 7cb091bCopy full SHA for 7cb091b
src/modules/auth/registerDevice.ts
@@ -52,8 +52,9 @@ export const registerDevice = async (params: RegisterDevice) => {
52
otp,
53
}));
54
} else if (selectedVerificationMethod.type === 'email_token') {
55
+ const urlEncodedLogin = encodeURIComponent(login);
56
winston.info(
- `Please open the following URL in your browser: https://www.dashlane.com/cli-device-registration?login=${login}`
57
+ `Please open the following URL in your browser: https://www.dashlane.com/cli-device-registration?login=${urlEncodedLogin}`
58
);
59
const token = await askToken();
60
({ authTicket } = await performEmailTokenVerification({
0 commit comments