Skip to content

Commit

Permalink
Fix: Typo in EventService
Browse files Browse the repository at this point in the history
  • Loading branch information
yeahlowflicker committed Dec 17, 2024
1 parent 4dc1147 commit 756f770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/event/Services/EventService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class EventService {
event.startTime = record.start_time ?? ""
event.endTime = record.end_time ?? ""
event.location = record.location ?? ""
event.fee = record.fee ?? : 0
event.fee = record.fee ?? 0
event.userID = record.user_id
event.createdAt = record.created_at

Expand Down

0 comments on commit 756f770

Please sign in to comment.