revert serialization of debugInfo data

This commit is contained in:
lohxt1
2025-03-25 19:50:06 +05:30
parent 7635230c88
commit d27677030d

View File

@@ -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
})