errorBoundary 주석제거
This commit is contained in:
@@ -372,21 +372,21 @@ function AppBase(props) {
|
|||||||
}, [dispatch]);
|
}, [dispatch]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
// <ErrorBoundary>
|
<ErrorBoundary>
|
||||||
// {webOSVersion === "" ? null : Number(webOSVersion) < 4 ? (
|
{webOSVersion === "" ? null : Number(webOSVersion) < 4 ? (
|
||||||
// <NotSupportedVersion />
|
<NotSupportedVersion />
|
||||||
// ) : (
|
) : (
|
||||||
<MainView
|
<MainView
|
||||||
initService={initService}
|
initService={initService}
|
||||||
className={
|
className={
|
||||||
typeof window === "object" &&
|
typeof window === "object" &&
|
||||||
!window.PalmSystem &&
|
!window.PalmSystem &&
|
||||||
!cursorVisible &&
|
!cursorVisible &&
|
||||||
css.preventMouse
|
css.preventMouse
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
// )}
|
)}
|
||||||
// </ErrorBoundary>
|
</ErrorBoundary>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user