We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11787f0 commit 16ca59fCopy full SHA for 16ca59f
src/utils/index.ts
@@ -76,11 +76,11 @@ export function stringifyError(error): string {
76
)
77
.trim()
78
// Unescape any HTML-escpaed characters
79
- .replaceAll("&", "&")
80
.replaceAll("<", "<")
81
.replaceAll(">", ">")
82
.replaceAll(""", '"')
83
.replaceAll("'", "'")
+ .replaceAll("&", "&")
84
);
85
} catch {
86
// Need to catch errors from JSON.stringify()
0 commit comments