케이스 이어하기 UI와 공통 탭·이미지 복구를 반영

This commit is contained in:
Yun Chan 2026-09-01 11:45:23 +09:00
parent 72353ecd82
commit f1b80676c1
38 changed files with 3581 additions and 455 deletions

View file

@ -12,7 +12,6 @@ import {
AUTH_EXPIRED_EVENT,
ApiError,
api,
apiUrl,
authApi,
type MeResponse,
} from "./api";
@ -172,7 +171,8 @@ function userFromMe(me: MeResponse): AuthUser {
onboardingCompletedAt: onboarding.onboarding_completed_at ?? null,
nickname,
selfIntroduction: (me.self_introduction ?? "").trim(),
avatarUrl: avatarUrl ? apiUrl(avatarUrl) : "",
// 이미지 URL의 scheme·상대경로 검증은 실제 렌더 경계(ResilientImage)가 소유한다.
avatarUrl,
};
}