fix warning about data attribute casing

This commit is contained in:
2024-08-12 01:06:58 +02:00
parent 4ab098728f
commit 399b2db2c9

View File

@ -62,7 +62,7 @@ export const DateList = ({ event }: { event: EventFragment }) => {
<span>Tid</span> <span>Tid</span>
<span>Sted</span> <span>Sted</span>
</div> </div>
<ul className={styles.dateList} data-showAll={showAllDates}> <ul className={styles.dateList} data-showall={showAllDates}>
{futureOccurrences.map((occurrence) => ( {futureOccurrences.map((occurrence) => (
<DateListItem <DateListItem
key={occurrence.id} key={occurrence.id}