- 회원가입 username 검증을 서버와 동일하게 맞춤 - 비밀번호 maxLength를 bcrypt 제한(72)에 맞춤 - 공지사항 줄바꿈 CSS 처리 (pre→white-space) - 어드민 페이지 에러 로깅 추가 - 다운로드 섹션 로딩 스켈레톤 추가 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -143,7 +143,9 @@ export default function DownloadAdmin() {
|
||||
const [info, setInfo] = useState(null);
|
||||
|
||||
useEffect(() => {
|
||||
getDownloadInfo().then(setInfo).catch(() => {});
|
||||
getDownloadInfo().then(setInfo).catch((err) => {
|
||||
console.error('다운로드 정보 로드 실패:', err);
|
||||
});
|
||||
}, []);
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user