Skip to content

Commit

Permalink
#16 feat: authInput 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
leejin-rho committed Jul 3, 2024
1 parent e09639b commit 676af78
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/auth/AuthInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import { ChangeEvent, HTMLInputTypeAttribute, forwardRef } from "react";
export interface TextInputProps {
className?: string;
value: string;
setValue: React.Dispatch<React.SetStateAction<string>>;
isError: boolean;
isError?: boolean;
errorText?: string;
placeholder?: string;
type?: HTMLInputTypeAttribute;
Expand Down

0 comments on commit 676af78

Please sign in to comment.