Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
AudunSorheim committed Nov 20, 2023
1 parent 5344691 commit 9b1ddca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/accordion/AccordionItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface Props {
export const AccordionItem = ({ eventDate, header, isLastItemInArray, children }: Props) => {
return (
<Accordion.Item defaultOpen={isLastItemInArray}>
<Accordion.Header>{`${getShortDateFormat(eventDate)} ${header}`}</Accordion.Header>
<Accordion.Header>{`${getShortDateFormat(eventDate)}: ${header}`}</Accordion.Header>
<Accordion.Content>
{children}
</Accordion.Content>
Expand Down

0 comments on commit 9b1ddca

Please sign in to comment.