From 3a792a021c1e3486a87d77e8957bae961a77a11b Mon Sep 17 00:00:00 2001 From: lohxt1 Date: Tue, 8 Apr 2025 16:31:27 +0530 Subject: [PATCH] oauth2 refresh token under request pane creates dup network logs --- packages/bruno-electron/src/utils/oauth2.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/bruno-electron/src/utils/oauth2.js b/packages/bruno-electron/src/utils/oauth2.js index 614e0224c..917a75c72 100644 --- a/packages/bruno-electron/src/utils/oauth2.js +++ b/packages/bruno-electron/src/utils/oauth2.js @@ -625,6 +625,7 @@ const refreshOauth2Token = async ({ requestCopy, collectionUid, certsAndProxyCon requestCopy.data = qs.stringify(data); requestCopy.url = url; requestCopy.responseType = 'arraybuffer'; + let debugInfo = { data: [] }; try { const { proxyMode, proxyConfig, httpsAgentRequestFields, interpolationOptions } = certsAndProxyConfig; const axiosInstance = makeAxiosInstance({ proxyMode, proxyConfig, httpsAgentRequestFields, interpolationOptions });