Update warning messages for all input fields to English
Translate various input validation messages from Korean to English across LoginModal, Auctions, and Landing components. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/9tQ591o
This commit is contained in:
@ -78,6 +78,8 @@ export default function LoginModal({ isOpen, onClose }: LoginModalProps) {
|
||||
type="text"
|
||||
value={username}
|
||||
onChange={(e) => setUsername(e.target.value)}
|
||||
onInvalid={(e) => (e.target as HTMLInputElement).setCustomValidity('Please enter your username')}
|
||||
onInput={(e) => (e.target as HTMLInputElement).setCustomValidity('')}
|
||||
placeholder="아이디를 입력하세요"
|
||||
required
|
||||
data-testid="input-username"
|
||||
@ -90,6 +92,8 @@ export default function LoginModal({ isOpen, onClose }: LoginModalProps) {
|
||||
type="password"
|
||||
value={password}
|
||||
onChange={(e) => setPassword(e.target.value)}
|
||||
onInvalid={(e) => (e.target as HTMLInputElement).setCustomValidity('Please enter your password')}
|
||||
onInput={(e) => (e.target as HTMLInputElement).setCustomValidity('')}
|
||||
placeholder="비밀번호를 입력하세요"
|
||||
required
|
||||
data-testid="input-password"
|
||||
|
||||
Reference in New Issue
Block a user