We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16a5c3e commit 58c0051Copy full SHA for 58c0051
web/components/about-settings.tsx
@@ -113,7 +113,7 @@ function diagnosticsToText(d: Diagnostics): string {
113
}
114
115
return JSON.stringify(d, replacer, 2)
116
- .replace(/ "/g, '')
+ .replace(/ {2}"/g, '')
117
.replace(/["{}\[\]]/g, '')
118
.replace(/^[ \t]*\n/gm, '')
119
.replace(/,\n/g, '\n')
@@ -146,9 +146,6 @@ const LoadedAboutSettings = (props: {
146
}, 2000)
147
148
149
- console.log(JSON.stringify(diagnostics, null, 2))
150
- console.log(diagnosticsToText(diagnostics))
151
-
152
return <Col className={''}>
153
<RuntimeInfo info={diagnostics.runtime}/>
154
<WebBuildInfo info={diagnostics.web}/>
0 commit comments