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
@@ -64,7 +64,7 @@ const Menu = () => {
<IonContent>
<IonList>
{pages.map((p, k) => (
<IonMenuToggle autoHide={false}>
<IonMenuToggle autoHide={false} key={k}>
<IonItem routerLink={p.url} routerDirection="none" detail={false} lines="none">
<IonIcon icon={p.icon} slot="start" />
<IonLabel>{p.title}</IonLabel>
+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>
);