Working on menu

This commit is contained in:
Max Lynch
2021-01-20 11:41:53 -06:00
parent 737fdf717c
commit bb75ec7208
2 changed files with 22 additions and 11 deletions
+2 -2
View File
@@ -43,8 +43,8 @@ const Notifications = ({ open, onDidDismiss }) => {
</IonToolbar>
</IonHeader>
<IonList>
{notifications.map(notification => (
<NotificationItem notification={notification} />
{notifications.map((notification, i) => (
<NotificationItem notification={notification} key={i} />
))}
</IonList>
</IonContent>