diff --git a/packages/backend/src/controller/scopeDetection.ts b/packages/backend/src/controller/scopeDetection.ts index e8d0ea7..4cdfd79 100644 --- a/packages/backend/src/controller/scopeDetection.ts +++ b/packages/backend/src/controller/scopeDetection.ts @@ -4,7 +4,7 @@ import { HttpUtils } from "../utils/http"; const httpUtils = new HttpUtils(); - export class scopeDetection { + export class ScopeDetection { // 쿼리 문자열에서 scope 값을 추출하고 값이 없으면 null 반환, 있다면 문자열 반환. private getScopeFromQuery(query: string | undefined): string | null { if (!query) return null;