Skip to content

Commit

Permalink
Corrige lint
Browse files Browse the repository at this point in the history
  • Loading branch information
emmenezes committed Nov 17, 2024
1 parent b8b3463 commit 25b2ba1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ const CalendarioView = (props) => {
<CalendarioEventos items={items} onChange={setDate} />
</div>
<div className={'eventos column'}>
{dateItems && <EventosLista items={dateItems} hasDescription={hasDescription} />}
{dateItems && (
<EventosLista items={dateItems} hasDescription={hasDescription} />
)}
</div>
</Container>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ const groupByDate = (items) => {
}, {});
};



const CalendarioBlockView = withQuerystringResults((props) => {
const { data, isEditMode, path, pathname, className, listingItems } = props;
const items = listingItems ? groupByDate(listingItems) : {};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
h3 {
margin-bottom: 0.25rem;
}

p {
margin-bottom: 0.25rem;
}
Expand Down

0 comments on commit 25b2ba1

Please sign in to comment.