Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
pbc1017 committed Jan 31, 2025
1 parent b661e0b commit d40898b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const useCreateFunding = (clubId: number) => {
},
purposeActivity: purposeActivity
? { id: purposeActivity.id }
: undefined,
: { id: null },
name,
expenditureDate: getKSTDate(data.expenditureDate),
expenditureAmount: Number(expenditureAmount),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const useUpdateFunding = (fundingId: number, clubId: number) => {
},
purposeActivity: purposeActivity
? { id: purposeActivity.id }
: undefined,
: { id: null },
name,
expenditureDate: getKSTDate(data.expenditureDate),
expenditureAmount: Number(expenditureAmount),
Expand Down

0 comments on commit d40898b

Please sign in to comment.