Skip to content

Commit

Permalink
fix : props에 onLogin 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
0xC0FFE2 committed Jan 21, 2025
1 parent b2d06c0 commit 1885ebd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/auth/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ interface LoginFormProps {
rememberMe: boolean;
};
onInputChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
onLogin: (type: "app" | "pin") => void;
}

const LoginForm: React.FC<LoginFormProps> = ({ formData, onInputChange }) => {
Expand Down

0 comments on commit 1885ebd

Please sign in to comment.