We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 225b266 commit 7851344Copy full SHA for 7851344
1 file changed
packages/insomnia/src/utils/prettify/json.ts
@@ -1,5 +1,3 @@
1
-import { SentryError } from '@sentry/utils';
2
-
3
const STATE_IN_NUN_VAR = 'nunvar';
4
const STATE_IN_NUN_TAG = 'nuntag';
5
const STATE_IN_NUN_COM = 'nuncom';
@@ -38,7 +36,7 @@ function ensureStringify(val?: string | Object): string {
38
36
try {
39
37
defaultVal = JSON.stringify(val);
40
} catch (error) {
41
- SentryError.captureStackTrace(error);
+ // If we can't stringify, just return the default
42
}
43
44
return defaultVal;
0 commit comments