We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bad3c5a commit b1f2a12Copy full SHA for b1f2a12
1 file changed
sources/commands/auth/index.ts
@@ -300,9 +300,9 @@ function formatEmojiHash(publicKeyBytes: Uint8Array): string | null {
300
function shouldShowEmojiHash(): boolean {
301
const value = process.env["BEE_EMOJI_HASH"]?.trim().toLowerCase();
302
if (!value) {
303
- return true;
+ return false;
304
}
305
- return !["0", "false", "off", "no"].includes(value);
+ return ["1", "true", "on", "yes"].includes(value);
306
307
308
async function pollForAppToken(opts: {
0 commit comments