Skip to content

Commit

Permalink
Fix: 배포 관련 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaeYubin committed Aug 1, 2024
1 parent 9e1ee48 commit df335cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/article/ArticleWriteForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const ArticleWriteForm = () => {
router.push('/write/locationSetting');
};

const onSubmit = async (values: z.infer<typeof formSchema>) => {
const onSubmit = (values: z.infer<typeof formSchema>) => {
const startHourValue = values.startHour;
const endHourValue = values.endHour;
const startMinuteValue = values.startMinute;
Expand Down

0 comments on commit df335cd

Please sign in to comment.