Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
tohuynh committed May 28, 2022
1 parent fd4ce6d commit ed3b467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/EventsContainer/EventsContainer.tsx
Expand Up @@ -155,7 +155,7 @@ const EventsContainer: FC<EventsContainerProps> = ({
} else if (state.models.length === 0) {
return <FetchCardsStatus>{strings.no_results_found}</FetchCardsStatus>;
} else {
const cards = state.models.map(({keyGrams, ...event}) => {
const cards = state.models.map(({ keyGrams, ...event }) => {
return {
link: `/${SEARCH_TYPE.EVENT}/${event.id}`,
jsx: <MeetingCard event={event} tags={keyGrams} />,
Expand Down

0 comments on commit ed3b467

Please sign in to comment.