카테고리>kids 아이템로드 오류 continueGetSubCagegory totalCount 가 20개일때 예외처리

This commit is contained in:
Dev TWIN0906
2025-06-05 17:33:15 +09:00
parent d1351ab442
commit a667b8f2ab
4 changed files with 36 additions and 35 deletions

View File

@@ -390,21 +390,21 @@ function AppBase(props) {
}, [dispatch]);
return (
<ErrorBoundary>
{webOSVersion === "" ? null : Number(webOSVersion) < 4 ? (
<NotSupportedVersion />
) : (
<MainView
initService={initService}
className={
typeof window === "object" &&
!window.PalmSystem &&
!cursorVisible &&
css.preventMouse
}
/>
)}
</ErrorBoundary>
// <ErrorBoundary>
// {webOSVersion === "" ? null : Number(webOSVersion) < 4 ? (
// <NotSupportedVersion />
// ) : (
<MainView
initService={initService}
className={
typeof window === "object" &&
!window.PalmSystem &&
!cursorVisible &&
css.preventMouse
}
/>
// )}
// </ErrorBoundary>
);
}