Fixing next linting issues

Upgraded to today's new Tailwind release
This commit is contained in:
Leo Giovanetti
2021-06-17 18:25:07 -03:00
parent c3ce255698
commit 57c6f004a7
6 changed files with 147 additions and 268 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ const ListItems = ({ list }) => {
return (
<IonList>
{(list?.items || []).map((item, key) => (
<ListItemEntry list={list} item={item} />
<ListItemEntry list={list} item={item} key={key} />
))}
</IonList>
);