카테고리>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

@@ -260,6 +260,11 @@ export const continueGetSubCategory =
[];
const totalCount = subCategoryData[key]?.total ?? 0;
const startIndex = CATEGORY_DATA_MAX_RESULTS_LIMIT * (pageNo - 1);
if (totalCount <= startIndex) {
return;
}
if (
(startIndex <= 1 && !targetData) ||
targetData[startIndex] ||