Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.5.0
20
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ const EventScheduleTabs = () => {
const dateB = new Date(b.fields.start_time);
return dateA.getTime() - dateB.getTime();
})
.map((events) => {
.map((events, i) => {
const { fields } = events;
const {
end_time,
Expand Down Expand Up @@ -237,7 +237,7 @@ const EventScheduleTabs = () => {
);
return (
<EventDropdown
key={JSON.stringify(fields)}
key={JSON.stringify(fields) + i}
dropdownQuestion={dropdownQuestion}
dropdownAnswer={description}
iconType="Symbol"
Expand Down
Loading