From 4831434e3756b873da3e090aba3f27d938646eec Mon Sep 17 00:00:00 2001 From: lohit Date: Tue, 23 Dec 2025 16:00:17 +0530 Subject: [PATCH] fix: oauth2 url update (#6489) --- packages/bruno-electron/src/utils/oauth2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-electron/src/utils/oauth2.js b/packages/bruno-electron/src/utils/oauth2.js index 82f8597e6..51d21fce2 100644 --- a/packages/bruno-electron/src/utils/oauth2.js +++ b/packages/bruno-electron/src/utils/oauth2.js @@ -8,7 +8,7 @@ const { safeParseJSON, safeStringifyJSON } = require('./common'); const { preferencesUtil } = require('../store/preferences'); const qs = require('qs'); -const BRUNO_OAUTH2_CALLBACK_URL = 'https://oauth2.usebruno.com/callback'; +const BRUNO_OAUTH2_CALLBACK_URL = 'https://oauth.usebruno.com/callback'; const oauth2Store = new Oauth2Store();