fix: remove redundant error logging in JSON parsing (#3759)

This commit is contained in:
Pragadesh-45
2025-01-08 21:24:15 +05:30
committed by GitHub
parent f5ff40abfa
commit 96d6bf1664

View File

@@ -44,7 +44,7 @@ const parseDataFromResponse = (response, disableParsingResponseJson = false) =>
data = JSON.parse(data);
}
} catch {
console.log('Failed to parse response data as JSON');
}
return { data, dataBuffer };