fix: 입력 검증 일관성·UX 개선
All checks were successful
Client CI/CD / deploy (push) Successful in 35s

- 회원가입 username 검증을 서버와 동일하게 맞춤
- 비밀번호 maxLength를 bcrypt 제한(72)에 맞춤
- 공지사항 줄바꿈 CSS 처리 (pre→white-space)
- 어드민 페이지 에러 로깅 추가
- 다운로드 섹션 로딩 스켈레톤 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-13 21:40:09 +09:00
parent aaf92baa9f
commit f93d81b6d9
7 changed files with 33 additions and 9 deletions

View File

@@ -62,7 +62,16 @@ export default function DownloadSection() {
}
};
if (!ready) return null;
if (!ready) {
return (
<section className="download-section">
<div className="download-content">
<h2 className="download-title">One of the plans</h2>
<p className="download-meta">불러오는 ...</p>
</div>
</section>
);
}
return (
<section className="download-section">