Skip to content

Commit

Permalink
Fix: 타입 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gamjatan9 committed Jul 10, 2024
1 parent 4aba562 commit 9946521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/parseDate.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const parseDate = (value: Date) => {
const parseDate = (value: Date | string) => {
const date = new Date(value);
const year = date.getFullYear();
const month = date.getMonth() + 1;
Expand Down

0 comments on commit 9946521

Please sign in to comment.