fix build
This commit is contained in:
@ -53,7 +53,10 @@ export const DateList = ({ event }: { event: EventFragment }) => {
|
||||
</h2>
|
||||
<ul className={styles.dateList}>
|
||||
{futureOccurrences.map((occurrence) => (
|
||||
<DateListItem key={occurrence.id} occurrence={occurrence} />
|
||||
<DateListItem
|
||||
key={occurrence.id}
|
||||
occurrence={occurrence as EventOccurrence}
|
||||
/>
|
||||
))}
|
||||
</ul>
|
||||
{/* <div onClick={() => setShowPast(!showPast)}>
|
||||
@ -79,7 +82,7 @@ export const DateList = ({ event }: { event: EventFragment }) => {
|
||||
);
|
||||
};
|
||||
|
||||
export const DateListDemo = ({ event }: { event: EventFragment }) => {
|
||||
export const DateListDemo = () => {
|
||||
return (
|
||||
<div className={styles.dateWrapper}>
|
||||
<h2 className="circlehead">
|
||||
|
Reference in New Issue
Block a user