diff options
Diffstat (limited to 'modern/src/reports/LogsPage.jsx')
-rw-r--r-- | modern/src/reports/LogsPage.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modern/src/reports/LogsPage.jsx b/modern/src/reports/LogsPage.jsx index 4b689944..7bdbd309 100644 --- a/modern/src/reports/LogsPage.jsx +++ b/modern/src/reports/LogsPage.jsx @@ -41,7 +41,7 @@ const LogsPage = () => { const registerDevice = (uniqueId) => { const query = new URLSearchParams({ uniqueId }); navigate(`/settings/device?${query.toString()}`); - } + }; return ( <PageLayout menu={<ReportsMenu />} breadcrumbs={['reportTitle', 'statisticsTitle']}> @@ -55,7 +55,7 @@ const LogsPage = () => { </TableRow> </TableHead> <TableBody> - {items.map((item, index) => ( + {items.map((item, index) => /* eslint-disable react/no-array-index-key */ ( <TableRow key={index}> <TableCell className={classes.columnAction} padding="none"> {item.deviceId ? ( |