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 814e0a6 commit 7f4e561Copy full SHA for 7f4e561
packages/next/src/next-devtools/userspace/app/app-dev-overlay-error-boundary.tsx
@@ -1,4 +1,4 @@
1
-import { Fragment, PureComponent } from 'react'
+import { PureComponent } from 'react'
2
import { dispatcher } from 'next/dist/compiled/next-devtools'
3
import { RuntimeErrorHandler } from '../../../client/dev/runtime-error-handler'
4
import { ErrorBoundary } from '../../../client/components/error-boundary'
@@ -31,10 +31,8 @@ function ErroredHtml({
31
}
32
return (
33
<ErrorBoundary errorComponent={DefaultGlobalError}>
34
- <>
35
- {globalErrorStyles}
36
- <GlobalError error={error} />
37
- </>
+ {globalErrorStyles}
+ <GlobalError error={error} />
38
</ErrorBoundary>
39
)
40
0 commit comments