ErrorBoundary 주석제거

This commit is contained in:
dongyoungKo
2025-06-18 16:27:35 +09:00
parent 6ed0f81e21
commit eb4f951822

View File

@@ -431,7 +431,7 @@ function AppBase(props) {
}, [dispatch]);
return (
// <ErrorBoundary>
<ErrorBoundary>
<>
{webOSVersion === "" ? null : Number(webOSVersion) < 4 ? (
<NotSupportedVersion />
@@ -447,7 +447,7 @@ function AppBase(props) {
/>
)}
</>
// </ErrorBoundary>
</ErrorBoundary>
);
}