refactor: 타입스크립트 수정, useCommonStore.ts 삭제

This commit is contained in:
“hyeonggkim”
2025-11-03 18:21:47 +09:00
parent ad81d63a1f
commit b80c31d778
8 changed files with 34 additions and 135 deletions

View File

@@ -218,7 +218,7 @@ export default defineEventHandler(async (event) => {
// 점검 중일 때 IP 필터링 활성화 여부 확인
if (inspectionData?.ip_filter_use_yn === 'Y') {
const clientIP = getTrueClientIp(event.node.req)
const clientIP = getTrueClientIp(event.node.req as any)
// 허용된 IP 목록 확인
if (!inspectionData?.ip_filter_list?.includes(clientIP)) {