Skip to content

Commit daf9575

Browse files
committed
fix: 'error' 상태 input/X버튼 직접 렌더링 분기 추가
1 parent 6fb6468 commit daf9575

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/common/component/SignupTextField/SignupTextField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ export default function SignupTextField({
233233
className={[styles.baseClass, styles.fieldVariants[fieldState]].join(' ')}
234234
{...wrapperProps}
235235
>
236-
{(fieldState === 'typing' || fieldState === 'error') ? (
236+
{fieldState === 'typing' || fieldState === 'error' ? (
237237
<>
238238
<input {...inputProps} />
239239
{value && !isLocked && (

0 commit comments

Comments
 (0)