Skip to content

Commit

Permalink
Delete unnecessary files
Browse files Browse the repository at this point in the history
  • Loading branch information
JiashuHarryHuang committed Feb 5, 2024
1 parent 369d673 commit 2004876
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 436 deletions.
4 changes: 0 additions & 4 deletions .babelrc

This file was deleted.

18 changes: 0 additions & 18 deletions .env.local.template

This file was deleted.

10 changes: 2 additions & 8 deletions components/Forms/EditEventPopupWindowForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,21 +142,15 @@ const EditEventPopupWindowForm = ({
};
};

const onChange1 = (
value: DatePickerProps['value'],
dateString: [string, string] | string
) => {
const onChange1 = (value: DatePickerProps['value'], dateString: any) => {
console.log('Selected Time: ', value);
console.log('Formatted Selected Time: ', dateString);

setStartDate(value);
console.log(startDate);
};

const onChange2 = (
value: DatePickerProps['value'],
dateString: [string, string] | string
) => {
const onChange2 = (value: DatePickerProps['value'], dateString: any) => {
console.log('Selected Time: ', value);
console.log('Formatted Selected Time: ', dateString);

Expand Down
Loading

0 comments on commit 2004876

Please sign in to comment.