From d27677030da23e26ea8754816b266713e8f98f14 Mon Sep 17 00:00:00 2001 From: lohxt1 Date: Tue, 25 Mar 2025 19:50:06 +0530 Subject: [PATCH] revert serialization of debugInfo data --- .../src/providers/ReduxStore/slices/collections/actions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/bruno-app/src/providers/ReduxStore/slices/collections/actions.js b/packages/bruno-app/src/providers/ReduxStore/slices/collections/actions.js index 1d6678ab6..9afb36cc9 100644 --- a/packages/bruno-app/src/providers/ReduxStore/slices/collections/actions.js +++ b/packages/bruno-app/src/providers/ReduxStore/slices/collections/actions.js @@ -1282,7 +1282,7 @@ export const fetchOauth2Credentials = (payload) => async (dispatch, getState) => url, collectionUid, credentialsId, - debugInfo: safeParseJSON(safeStringifyJSON(debugInfo)), + debugInfo, folderUid: folderUid || null, itemUid: !folderUid ? itemUid : null }) @@ -1305,7 +1305,7 @@ export const refreshOauth2Credentials = (payload) => async (dispatch, getState) url, collectionUid, credentialsId, - debugInfo: safeParseJSON(safeStringifyJSON(debugInfo)), + debugInfo, folderUid: folderUid || null, itemUid: !folderUid ? itemUid : null })