Skip to content

Commit

Permalink
🎨 Style: singleQuote로 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
sy-paik committed Nov 9, 2023
1 parent 098da5f commit fab00f6
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/components/Login/LoginForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,19 @@ const LoginForm = ({ mutate, message }) => {
return (
<form onSubmit={handleSubmit(onSubmit)}>
<Input
label="이메일"
type="email"
placeHolder="이메일 주소를 입력해주세요"
label='이메일'
id='email'
type='email'
placeHolder='이메일 주소를 입력해주세요'
errorMsg={errors.email?.message}
required
{...emailController.field}
/>
<Input
label="비밀번호"
type="password"
placeHolder="비밀번호를 입력해주세요"
label='비밀번호'
id='password'
type='password'
placeHolder='비밀번호를 입력해주세요'
errorMsg={errors.password?.message || message}
required
{...passwordController.field}
Expand Down

0 comments on commit fab00f6

Please sign in to comment.