[FIX] 검사 결과 화면 렌더링 시 한글 깨짐 현상 수정#72
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #62
개요
검사 결과 화면 진입 직후 약 0.5초 동안 한글 텍스트가 깨져 보이는 문제를 수정했습니다.
기존에는 검사 완료 후
scanning.tsx에서 결과 화면으로router.replace()된 뒤, 결과 화면이analysisId를 기준으로 상세 분석 결과를 다시 불러오는 동안 임시 로딩 화면이 먼저 렌더링되었습니다. 이 로딩 분기에 들어있는 헤더 제목과 안내 문구가 이미 깨진 문자열로 작성되어 있어, API 응답이 도착하기 전까지 잠깐 깨진 한글이 화면에 표시되었습니다.이번 작업에서는 검사 결과 화면 3종의 초기 로딩 분기에 들어있던 깨진 문자열을 정상 한글 문구로 교체했습니다. 결과 데이터 로딩, verdict 재확인, 결과 화면 전환, 저장/접속 버튼 동작 흐름은 변경하지 않았습니다.
주요 구현 내용
검사 결과로 교체분석 결과를 불러오는 중입니다.로 교체useAnalysisResult데이터 로딩 흐름 유지router.replace()결과 화면 이동 흐름 유지파일별 역할
app/(tabs)/(home)/scan-result.tsx: 안전 결과 화면의 초기 로딩 헤더/문구 한글 깨짐 수정app/(tabs)/(home)/scan-result-caution.tsx: 주의 결과 화면의 초기 로딩 헤더/문구 한글 깨짐 수정app/(tabs)/(home)/scan-result-block.tsx: 위험 결과 화면의 초기 로딩 헤더/문구 한글 깨짐 수정해결한 이슈 목록
scan-result.tsx의 초기 로딩 분기 확인scan-result-caution.tsx의 초기 로딩 분기 확인scan-result-block.tsx의 초기 로딩 분기 확인scanning.tsx에서 검사 완료 후 결과 화면으로 이동하는router.replace()흐름 확인useAnalysisResult로딩 중 임시 화면이 렌더링되는 흐름 확인체크 사항
참고사항
Screenshots or Video
-수정 후 화면
