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 900244d commit fe15814Copy full SHA for fe15814
src/bin/identities/CommandAuthenticate.ts
@@ -65,7 +65,7 @@ class CommandAuthenticate extends CommandPolykey {
65
process.stdout.write(
66
binUtils.outputFormatter({
67
type: options.format === 'json' ? 'json' : 'list',
68
- data: [`Your device code is: ${codeMessage!.getMessage()}`],
+ data: [`Your device code is: ${codeMessage!.getIdentityId()}`],
69
}),
70
);
71
return (await stream.next()).value;
@@ -77,7 +77,7 @@ class CommandAuthenticate extends CommandPolykey {
77
78
79
data: [
80
- `Successfully authenticated user: ${successMessage!.getMessage()}`,
+ `Successfully authenticated user: ${successMessage!.getIdentityId()}`,
81
],
82
83
0 commit comments