fix: 회원가입 비밀번호 확인 체크 표시 유니코드 이스케이프 수정
All checks were successful
Client CI/CD / test (push) Successful in 9s
Client CI/CD / deploy (push) Successful in 14s

JSX 텍스트 노드에서 \u2713이 리터럴로 렌더링되는 문제를 JS 표현식으로 감싸 수정.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-27 16:05:35 +09:00
parent 73ab907e09
commit ad0db24891

View File

@@ -132,7 +132,7 @@ export default function RegisterPage() {
<span id="confirm-hint" className="input-hint input-hint-error">비밀번호가 일치하지 않습니다</span> <span id="confirm-hint" className="input-hint input-hint-error">비밀번호가 일치하지 않습니다</span>
)} )}
{confirmMatch && ( {confirmMatch && (
<span id="confirm-hint" className="input-hint input-hint-success">비밀번호가 일치합니다 \u2713</span> <span id="confirm-hint" className="input-hint input-hint-success">비밀번호가 일치합니다 {'\u2713'}</span>
)} )}
</div> </div>