Add error boundary to the project dashboard list

GitOrigin-RevId: 0f4cc3b4db62efe25ceeff202f305d08ddd73968
This commit is contained in:
Rebeka
2023-07-17 10:24:38 +00:00
committed by Copybot
parent 4388934a57
commit a412f3d70e
6 changed files with 89 additions and 9 deletions
@@ -25,6 +25,8 @@ import LoadMore from './load-more'
import { useEffect } from 'react'
import getMeta from '../../../utils/meta'
import WelcomeMessageNew from './welcome-message-new'
import withErrorBoundary from '../../../infrastructure/error-boundary'
import { GenericErrorBoundaryFallback } from '../../../shared/components/generic-error-boundary-fallback'
function ProjectListRoot() {
const { isReady } = useWaitForI18n()
@@ -191,4 +193,4 @@ function DashApiError() {
)
}
export default ProjectListRoot
export default withErrorBoundary(ProjectListRoot, GenericErrorBoundaryFallback)