Skip to content

Commit 7fae91c

Browse files
authored
remove extra single paren
1 parent 1b63090 commit 7fae91c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/views/calendar/event-row.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function CalendarTimes({event, style}: {event: EventType, style: any}) {
9595
// 12:00 PM to Jun. 25 3:00pm
9696
// Midnight to Jun. 25 <-- assuming the end time is also midnight
9797
start = event.startTime.format('h:mm A')
98-
const endFormat = endTime === midnightTime ? 'MMM. D' : 'MMM. D h:mm A''
98+
const endFormat = endTime === midnightTime ? 'MMM. D' : 'MMM. D h:mm A'
9999
end = `to ${event.endTime.format(endFormat)}`
100100
} else if (sillyZeroLength) {
101101
start = event.startTime.format('h:mm A')

0 commit comments

Comments
 (0)