Skip to content

Commit

Permalink
fix:#5 연산자 띄어쓰기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dalzzy committed Jan 3, 2025
1 parent 555b79d commit ee4e0c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SignUp/BirthdayGenderStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const BirthdayGenderStep: React.FC<{ onNext: () => void }> = ({ onNext }) => {
validateYear() &&
validateMonth() &&
validateDay() &&
signupState.gender! == ''
signupState.gender !== ''
);
};

Expand Down

0 comments on commit ee4e0c5

Please sign in to comment.