Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
captainmangoC4 committed Nov 11, 2022
1 parent a393450 commit 3063331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/time.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const getDates = (start, end) => {
startDay: isValid(startDate) ? format(startDate, "d MMMM yyyy") : "",
endDay: isValid(endDate) ? format(endDate, "d MMMM yyyy") : "",
startTime: isValid(startDate)
? format(endDate, "d MMMM yyyy - h:mm a")
? format(startDate, "d MMMM yyyy - h:mm a")
: "",
endTime: isValid(endDate) ? format(endDate, "d MMMM yyyy - h:mm a") : "",
daysDuration,
Expand Down

0 comments on commit 3063331

Please sign in to comment.