Skip to content

사용자 노출 에러 메시지 안전화 및 코드 기반 처리 표준화 - #310

Open
IENFI wants to merge 7 commits into
devfrom
feat/error-response-standardization-#301
Open

사용자 노출 에러 메시지 안전화 및 코드 기반 처리 표준화#310
IENFI wants to merge 7 commits into
devfrom
feat/error-response-standardization-#301

Conversation

@IENFI

@IENFI IENFI commented Jul 27, 2026

Copy link
Copy Markdown
Collaborator

요약 (연관 이슈 번호 포함)

  • closes 에러 응답 표준화 및 사용자 노출 메시지 안전화 #301
  • 백엔드와 프론트의 에러 처리 기준을 code + safeMessage 기반으로 표준화했습니다.
  • 알 수 없는 오류와 내부 시스템 오류의 원문이 사용자에게 노출되지 않도록 개선했습니다.
  • 인증 및 WebSocket의 기존 복구 동작은 유지하면서 메시지 기반 분기를 코드 기반으로 변경했습니다.

작업 내용 + 스크린샷

백엔드

  • HTTP 전역 예외 응답 구조 표준화
  • unknown, DB, library 및 5xx 오류의 공통 메시지 치환
  • 응답 내 details, stack, 내부 예외 원문 제거
  • 원본 예외와 stack의 서버 로그 유지
  • 응답 및 로그에 requestId 추가
  • 인증 오류 코드 및 안전 메시지 표준화
  • Access Token과 Refresh Token 오류의 기존 복구 구분 유지
  • WebSocket 예외의 code, message, requestId 응답 표준화
  • WebSocket raw 메시지의 사용자 응답 노출 차단

표준 에러 응답 예시:

{
  "success": false,
  "data": null,
  "error": {
    "code": "INTERNAL_SERVER_ERROR",
    "message": "일시적인 오류가 발생했습니다. 잠시 후 다시 시도해 주세요.",
    "requestId": "req_123456"
  }
}

프론트엔드

  • error.code 기반 사용자 메시지 매핑 추가
  • 알 수 없는 코드 및 일반 Error의 공통 메시지 치환
  • ApiErrorrequestId 전달
  • 전역 Query 및 Mutation 오류 토스트 처리 표준화
  • raw error.message 기반 토스트 및 조건 분기 제거
  • HTTP 오류의 코드 기반 판별 함수 추가
  • WebSocket 오류의 코드 기반 정책 처리
  • 인증 재발급, 로그아웃, 드래프트 인원 초과 등 기존 동작 유지
  • 시스템 오류의 Sentry 보고 정책 추가
  • Sentry 이벤트에 requestId, errorCode, 발생 위치 태그 추가
  • 예상 가능한 4xx 및 이미 보고된 네트워크·파싱 오류의 중복 보고 방지

실제 걸린 시간

  • 약 4h

작업하며 고민했던 점(선택)

  • 인증 오류의 세부 코드는 프론트의 토큰 재발급 및 로그아웃 동작을 결정하므로 단순 통합하지 않고 기존 구분을 유지했습니다.
  • 사용자 메시지는 안전 문구로 통일하되 원본 메시지와 stack은 서버 로그 및 Sentry 추적에 사용할 수 있도록 분리했습니다.
  • 폼 검증과 도메인 안내는 기존 고정 문구를 유지하고, 시스템 오류만 공통 매핑 함수를 거치도록 구분했습니다.
  • WebSocket에서 validation, 권한, stale 이벤트는 사용자에게 노출하지 않지만 백엔드 warn 로그에는 기록하도록 유지했습니다.
  • 프론트와 백엔드는 독립적으로 빌드·배포되므로 에러 매핑을 각 애플리케이션 내부에 유지했습니다.

테스트 실행 여부

  • 👍 네, 테스트했어요.
  • 🙅 아니요, 필요하지 않아요.
  • 🤯 아니요, 하지만 테스트가 필요해요.
# 백엔드
pnpm test --runInBand
pnpm exec eslint "{src,apps,libs,test}/**/*.ts"
pnpm build

# 프론트엔드
pnpm test
pnpm lint
pnpm exec tsc --noEmit --pretty false

리뷰 참고사항(선택)

  • 실제 Sentry 대시보드 수신 여부는 production 환경에서 500 오류 발생 후 별도 확인이 필요합니다.
  • requestId는 현재 예외 필터에서 생성되며 요청 전체 로그 컨텍스트로 전파되지는 않습니다.
  • soft-delete 게시글의 미디어 정리 과정에서 발생하는 FK 오류는 본 PR과 별개의 기존 데이터 정합성 문제로 후속 이슈에서 처리할 예정입니다.

시각 자료(이미지/영상, 있다면)(선택)

Summary by CodeRabbit

  • Bug Fixes

    • Standardized API and WebSocket error responses with safe, user-friendly messages.
    • Added consistent handling for authentication failures, expired tokens, invalid sessions, and validation errors.
    • Improved draft-not-found detection and error notifications across the application.
    • Added request IDs to errors to support troubleshooting without exposing sensitive details.
    • WebSocket errors now trigger appropriate actions, such as authentication refresh, draft-capacity notices, or reporting unexpected failures.
  • Tests

    • Expanded automated coverage for authentication, API errors, WebSocket errors, notifications, and error reporting.

@IENFI
IENFI requested a review from H-sooyeon July 27, 2026 10:04
@IENFI IENFI self-assigned this Jul 27, 2026
@IENFI IENFI added 🖥️ FE 프론트 작업 🛠️ BE 백엔드 작업 labels Jul 27, 2026
@IENFI IENFI linked an issue Jul 27, 2026 that may be closed by this pull request
10 tasks
@IENFI IENFI added the 🧩 chore 코드 수정 외 환경 설정 label Jul 27, 2026
@coderabbitai

coderabbitai Bot commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Warning

Review limit reached

@IENFI, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 48 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 0fbbd4dc-5af6-4f7f-bc56-e866d7007b68

📥 Commits

Reviewing files that changed from the base of the PR and between afdb228 and 860b82f.

📒 Files selected for processing (26)
  • backend/src/common/exception_filters/AllHttpExceptionFilter.spec.ts
  • backend/src/common/exception_filters/AllHttpExceptionFilter.ts
  • backend/src/common/exception_filters/AllWsExceptionFilter.spec.ts
  • backend/src/common/exception_filters/AllWsExceptionFilter.ts
  • backend/src/common/exceptions/auth-unauthorized.exception.spec.ts
  • backend/src/common/exceptions/auth-unauthorized.exception.ts
  • backend/src/modules/auth/auth.controller.ts
  • backend/src/modules/auth/jwt/jwt.guard.spec.ts
  • backend/src/modules/auth/jwt/jwt.guard.ts
  • frontend/package.json
  • frontend/src/app/(post)/group/[groupId]/post/[draftId]/page.tsx
  • frontend/src/app/(post)/group/_components/GroupAccessGuard.tsx
  • frontend/src/app/(post)/group/_components/GroupDraftFloating.tsx
  • frontend/src/app/providers.tsx
  • frontend/src/hooks/useApi.ts
  • frontend/src/lib/types/recordCollaboration.ts
  • frontend/src/lib/types/response.ts
  • frontend/src/lib/utils/error/publishHandler.ts
  • frontend/src/lib/utils/errorHandler.test.ts
  • frontend/src/lib/utils/errorHandler.ts
  • frontend/src/lib/utils/errorReporter.test.ts
  • frontend/src/lib/utils/errorReporter.ts
  • frontend/src/lib/utils/errorToast.test.ts
  • frontend/src/lib/utils/errorToast.ts
  • frontend/src/lib/utils/socketErrorPolicy.test.ts
  • frontend/src/lib/utils/socketErrorPolicy.ts
📝 Walkthrough

Walkthrough

Backend HTTP, WebSocket, and authentication errors now use standardized safe codes, messages, and request IDs. Frontend API, toast, Sentry, and socket handling now consume error codes instead of raw messages, with expanded unit-test coverage.

Changes

Backend error normalization

Layer / File(s) Summary
HTTP exception normalization
backend/src/common/exception_filters/AllHttpExceptionFilter.ts, backend/src/common/exception_filters/AllHttpExceptionFilter.spec.ts
HTTP exceptions are normalized to safe status-based messages and codes, request IDs are validated or generated, and structured logging includes exception details.
Authentication error mapping
backend/src/common/exceptions/auth-unauthorized.exception.ts, backend/src/modules/auth/jwt/jwt.guard.ts, backend/src/modules/auth/auth.controller.ts, backend/src/**/auth*.spec.ts
Authentication failures map to standardized codes such as UNAUTHORIZED, TOKEN_EXPIRED, and INVALID_TOKEN, with internal reasons kept in details.
WebSocket error normalization
backend/src/common/exception_filters/AllWsExceptionFilter.ts, backend/src/common/exception_filters/AllWsExceptionFilter.spec.ts
WebSocket exceptions are mapped to safe payloads containing stable codes, messages, and generated request IDs.

Frontend error handling

Layer / File(s) Summary
API error contracts and messaging
frontend/src/lib/utils/errorHandler.ts, frontend/src/lib/types/response.ts, frontend/src/hooks/useApi.ts, frontend/src/lib/utils/error/publishHandler.ts, frontend/src/app/(post)/group/..., frontend/src/lib/utils/errorHandler.test.ts
API errors preserve codes and request IDs, user messages come from centralized code mappings, and draft-not-found handling checks error codes.
Error display and reporting
frontend/src/lib/utils/errorToast.ts, frontend/src/lib/utils/errorReporter.ts, frontend/src/app/providers.tsx, frontend/src/app/(post)/group/_components/*, frontend/src/lib/utils/*test.ts
Toast and Sentry utilities centralize safe display and selective reporting for query, mutation, group, and draft errors.
Socket error policy
frontend/src/lib/utils/socketErrorPolicy.ts, frontend/src/store/useSocketStore.ts, frontend/src/lib/types/recordCollaboration.ts, frontend/vitest.config.ts, frontend/package.json
Socket errors use code-based actions for authentication refresh, draft-capacity feedback, ignored events, and reporting; unit-test execution is configured.

Estimated code review effort: 4 (Complex) | ~45 minutes

Sequence Diagram(s)

sequenceDiagram
  participant Backend
  participant FrontendAPI
  participant ErrorHandler
  participant Toast
  participant Sentry
  Backend->>FrontendAPI: safe error with code and requestId
  FrontendAPI->>ErrorHandler: createApiError(response)
  ErrorHandler->>Toast: show mapped user message
  FrontendAPI->>Sentry: captureSystemError(error, source)
Loading

Possibly related PRs

Suggested labels: 🔨refactor

Suggested reviewers: h-sooyeon

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 6.67% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Linked Issues check ✅ Passed The PR implements the issue's core goals: code-based error normalization, requestId propagation, raw-message suppression, auth mappings, and frontend fallbacks/tests.
Out of Scope Changes check ✅ Passed The changes stay focused on error handling, related tests, and supporting config updates, with no clear unrelated scope creep.
Title check ✅ Passed The title clearly summarizes the main change: safer user-facing error messages and code-based error handling standardization.
Description check ✅ Passed The description matches the template well with summary, work details, time spent, testing, and review notes, and the optional sections are acceptable.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feat/error-response-standardization-#301

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

IENFI added 7 commits July 27, 2026 19:07
- 전역 HTTP 예외 응답 구조 통일
- code, message, requestId 기반 에러 페이로드 표준화
- 알 수 없는 예외 및 5xx 에러의 공통 메시지 치환
- 응답 본문 내 raw details, stack, 내부 예외 원문 제거
- 로그 상 원본 예외 및 추적 정보 유지
- 전역 예외 필터 단위 테스트 추가
- 인증 복구 동작 구분을 위한 세부 에러 코드 유지
- Access Token 만료 및 유효성 오류 구분
- Refresh Token 만료, 누락, 재사용 오류 구분
- 세션 종료 및 재로그인 대상 오류 구분 유지
- 인증 코드별 안전한 사용자 메시지 중앙 관리
- 내부 인증 실패 사유의 로그 추적 정보 유지
- 인증 예외 및 JWT 가드 단위 테스트 추가
- 에러 코드별 안전한 사용자 메시지 중앙 관리
- 알 수 없는 에러 코드의 공통 메시지 치환
- raw error message 직접 노출 방지
- 인증 재발급 및 로그아웃 분류 동작 유지
- API 에러 내 원본 메시지 및 requestId 추적 정보 유지
- 백엔드 표준 에러 응답 타입 반영
- 에러 메시지 매핑 단위 테스트 추가
- 시스템 오류 토스트 공통 함수 도입
- 전역 Query 및 Mutation 오류 처리 경로 통일
- 개별 시스템 오류 토스트의 코드 매핑 적용
- raw error message 토스트 전달 방지
- 폼 검증 및 도메인 안내 문구 처리 유지
- 토스트 메시지 및 옵션 전달 단위 테스트 추가
- 공동 드래프트 조회 오류의 code 기반 판별
- raw error message 문자열 비교 제거
- 타입 안전한 에러 코드 판별 함수 추가
- 게시 발행 오류 코드 상수 중복 제거
- 기존 NOT_FOUND 처리 및 Sentry 분기 유지
- 에러 코드 판별 단위 테스트 추가
- WebSocket 예외의 code, message, requestId 응답 표준화
- 알 수 없는 WS 예외의 raw 메시지 노출 차단
- 인증 오류의 토큰 재발급 동작 유지
- 드래프트 인원 초과 안내 동작 유지
- validation, 권한, stale 이벤트 무시 정책 유지
- 예상하지 못한 WS 오류의 Sentry 추적 유지
- 백엔드 필터 및 프론트 오류 정책 단위 테스트 추가
- 전역 Query 및 Mutation 시스템 오류 Sentry 보고
- Sentry 이벤트 내 requestId 및 errorCode 태그 추가
- 예상 가능한 사용자 오류 보고 제외
- 네트워크 및 파싱 오류 중복 보고 방지
- 기존 토스트와 재시도 동작 유지
- Sentry 보고 정책 단위 테스트 추가
@IENFI
IENFI force-pushed the feat/error-response-standardization-#301 branch from afdb228 to 860b82f Compare July 27, 2026 10:11
@github-actions

Copy link
Copy Markdown

Coverage Report for Backend (backend)

Status Category Percentage Covered / Total
🔵 Lines 13.35% 903 / 6763
🔵 Statements 13.76% 1001 / 7271
🔵 Functions 8.36% 81 / 968
🔵 Branches 14.4% 513 / 3562
File Coverage
File Stmts Branches Functions Lines Uncovered Lines
Changed Files
backend/src/common/exception_filters/AllHttpExceptionFilter.ts 94% 78.12% 100% 93.75% 112, 153, 160
backend/src/common/exception_filters/AllWsExceptionFilter.ts 93.54% 42.85% 100% 93.1% 110, 123-126
backend/src/common/exceptions/auth-unauthorized.exception.ts 100% 50% 100% 100%
backend/src/modules/auth/auth.controller.ts 0% 0% 0% 0% 1-301
backend/src/modules/auth/jwt/jwt.guard.ts 90% 55.55% 100% 88.88% 16, 20
Generated in workflow #35 for commit 860b82f by the Vitest Coverage Report Action

@github-actions

Copy link
Copy Markdown

Coverage Report for Frontend (frontend)

Status Category Percentage Covered / Total
🔴 Lines 20.48% (🎯 65%) 1586 / 7743
🔴 Statements 20.17% (🎯 65%) 1694 / 8396
🔵 Functions 20.98% 460 / 2192
🔵 Branches 17.28% 972 / 5622
File Coverage
File Stmts Branches Functions Lines Uncovered Lines
Changed Files
frontend/src/app/providers.tsx 0% 0% 0% 0% 17-106
frontend/src/app/(post)/group/[groupId]/post/[draftId]/page.tsx 0% 0% 0% 0% 24-97
frontend/src/app/(post)/group/_components/GroupAccessGuard.tsx 0% 0% 0% 0% 20-36
frontend/src/app/(post)/group/_components/GroupDraftFloating.tsx 0% 0% 0% 0% 31-156
frontend/src/hooks/useApi.ts 85.18% 76.92% 90.47% 84.9% 70, 111, 156, 163-164, 204-205, 242
frontend/src/lib/types/recordCollaboration.ts 100% 100% 100% 100%
frontend/src/lib/types/response.ts 100% 100% 100% 100%
frontend/src/lib/utils/errorHandler.ts 82.85% 76% 100% 90.62% 85, 94, 99, 115-117
frontend/src/lib/utils/errorReporter.ts 95.23% 96.15% 100% 95.23% 69
frontend/src/lib/utils/errorToast.ts 100% 100% 100% 100%
frontend/src/lib/utils/socketErrorPolicy.ts 100% 100% 100% 100%
frontend/src/lib/utils/error/publishHandler.ts 90% 83.33% 75% 88.88% 22
frontend/src/store/useSocketStore.ts 0% 0% 0% 0% 23-136
Generated in workflow #41 for commit 860b82f by the Vitest Coverage Report Action

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
frontend/src/store/useSocketStore.ts (1)

104-125: 🩺 Stability & Availability | 🟡 Minor | ⚡ Quick win

Guard the report path against malformed socket payloads.

data?.code safely classifies a missing payload as REPORT, but Line 120 then dereferences data.code, throwing instead of reporting it.

Proposed fix
     socket.on('exception', async (data: SocketExceptionResponse) => {
       const action = getSocketErrorAction(data?.code);
+      const errorCode = data?.code ?? 'UNKNOWN_SOCKET_ERROR';
 
       if (action === SOCKET_ERROR_ACTIONS.SHOW_DRAFT_FULL) {
         toast.warning('참여 인원이 가득 찼어요.');
         return;
       }
@@
-      Sentry.captureMessage(`소켓 서버 예외: ${data.code}`, {
+      Sentry.captureMessage(`소켓 서버 예외: ${errorCode}`, {
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@frontend/src/store/useSocketStore.ts` around lines 104 - 125, Update the
unexpected-error reporting block in the socket exception handler to safely
handle missing or malformed data, avoiding the direct data.code dereference used
by Sentry.captureMessage. Preserve classification via
getSocketErrorAction(data?.code) and ensure the report/log path still records
the exception without throwing when data is absent.
🧹 Nitpick comments (1)
backend/src/modules/auth/jwt/jwt.guard.spec.ts (1)

10-77: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Add test coverage for the error rethrow/wrap branches.

Tests cover the info-based mapping (TOKEN_EXPIRED/INVALID_TOKEN/UNAUTHORIZED) and the success path, but not handleRequest's handling of a truthy error argument (rethrow if Error, wrap otherwise) — the two branches that determine whether an auth failure surfaces as a raw 500 vs. a structured 401.

✅ Suggested additional tests
+  it('Error 인스턴스인 error는 그대로 다시 던진다', () => {
+    const original = new Error('strategy failure');
+    expect(() => guard.handleRequest(original, false, undefined)).toThrow(original);
+  });
+
+  it('Error가 아닌 error는 래핑하여 던진다', () => {
+    expect(() => guard.handleRequest('boom', false, undefined)).toThrow(
+      'Authentication failed',
+    );
+  });
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@backend/src/modules/auth/jwt/jwt.guard.spec.ts` around lines 10 - 77, Add
tests for the truthy error branches in JwtAuthGuard.handleRequest: verify an
Error instance is rethrown unchanged, and verify a non-Error truthy value is
wrapped as the structured unauthorized HttpException response. Reuse getResponse
where appropriate and assert the resulting status and response shape.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Outside diff comments:
In `@frontend/src/store/useSocketStore.ts`:
- Around line 104-125: Update the unexpected-error reporting block in the socket
exception handler to safely handle missing or malformed data, avoiding the
direct data.code dereference used by Sentry.captureMessage. Preserve
classification via getSocketErrorAction(data?.code) and ensure the report/log
path still records the exception without throwing when data is absent.

---

Nitpick comments:
In `@backend/src/modules/auth/jwt/jwt.guard.spec.ts`:
- Around line 10-77: Add tests for the truthy error branches in
JwtAuthGuard.handleRequest: verify an Error instance is rethrown unchanged, and
verify a non-Error truthy value is wrapped as the structured unauthorized
HttpException response. Reuse getResponse where appropriate and assert the
resulting status and response shape.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: c99be240-f2d8-4bf1-a794-729bcdd65487

📥 Commits

Reviewing files that changed from the base of the PR and between ea1c3bf and afdb228.

📒 Files selected for processing (28)
  • backend/src/common/exception_filters/AllHttpExceptionFilter.spec.ts
  • backend/src/common/exception_filters/AllHttpExceptionFilter.ts
  • backend/src/common/exception_filters/AllWsExceptionFilter.spec.ts
  • backend/src/common/exception_filters/AllWsExceptionFilter.ts
  • backend/src/common/exceptions/auth-unauthorized.exception.spec.ts
  • backend/src/common/exceptions/auth-unauthorized.exception.ts
  • backend/src/modules/auth/auth.controller.ts
  • backend/src/modules/auth/jwt/jwt.guard.spec.ts
  • backend/src/modules/auth/jwt/jwt.guard.ts
  • frontend/package.json
  • frontend/src/app/(post)/group/[groupId]/post/[draftId]/page.tsx
  • frontend/src/app/(post)/group/_components/GroupAccessGuard.tsx
  • frontend/src/app/(post)/group/_components/GroupDraftFloating.tsx
  • frontend/src/app/providers.tsx
  • frontend/src/hooks/useApi.ts
  • frontend/src/lib/types/recordCollaboration.ts
  • frontend/src/lib/types/response.ts
  • frontend/src/lib/utils/error/publishHandler.ts
  • frontend/src/lib/utils/errorHandler.test.ts
  • frontend/src/lib/utils/errorHandler.ts
  • frontend/src/lib/utils/errorReporter.test.ts
  • frontend/src/lib/utils/errorReporter.ts
  • frontend/src/lib/utils/errorToast.test.ts
  • frontend/src/lib/utils/errorToast.ts
  • frontend/src/lib/utils/socketErrorPolicy.test.ts
  • frontend/src/lib/utils/socketErrorPolicy.ts
  • frontend/src/store/useSocketStore.ts
  • frontend/vitest.config.ts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🛠️ BE 백엔드 작업 🧩 chore 코드 수정 외 환경 설정 🖥️ FE 프론트 작업

Projects

None yet

Development

Successfully merging this pull request may close these issues.

에러 응답 표준화 및 사용자 노출 메시지 안전화

1 participant