API Selector 전역변수 사용 수정: window → globalThis
This commit is contained in:
@@ -22,7 +22,7 @@ document.addEventListener('DOMContentLoaded', function() {
|
||||
return; // 모듈 미사용 페이지
|
||||
}
|
||||
|
||||
const configuredPageSize = Number(window.API_SELECTOR_PAGE_SIZE);
|
||||
const configuredPageSize = Number(globalThis.API_SELECTOR_PAGE_SIZE);
|
||||
const PAGE_SIZE = Number.isInteger(configuredPageSize) && configuredPageSize > 0 ? configuredPageSize : 15;
|
||||
|
||||
// DOM Elements
|
||||
|
||||
Reference in New Issue
Block a user