From 764a8aac377c46bc8c77e4894223ed69de5c665f Mon Sep 17 00:00:00 2001 From: Isaac Date: Sun, 9 Feb 2025 23:26:04 +0000 Subject: [PATCH] fix: re-enable `prompt=none` --- src/routes/auth/login.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/auth/login.js b/src/routes/auth/login.js index d405ad5..9993fa9 100644 --- a/src/routes/auth/login.js +++ b/src/routes/auth/login.js @@ -16,7 +16,7 @@ module.exports.get = () => ({ const params = { client_id: client.user.id, - // ? prompt: 'none', + prompt: 'none', redirect_uri: `${process.env.HTTP_EXTERNAL}/auth/callback`, // if not set defaults to first allowed response_type: 'code', scope: 'guilds identify',