fix: 회원가입 비밀번호 확인 체크 표시 유니코드 이스케이프 수정
JSX 텍스트 노드에서 \u2713이 리터럴로 렌더링되는 문제를 JS 표현식으로 감싸 수정. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user