fix unsafe access

This commit is contained in:
Alex Holliday
2024-09-05 14:42:12 -07:00
parent 3dbbd93f01
commit 191aea95f0
+2 -2
View File
@@ -110,8 +110,8 @@ const Monitors = ({ isAdmin }) => {
borderColor={theme.palette.border.light}
backgroundColor={theme.palette.background.accent}
>
{monitorState?.monitorsSummary.monitors?.monitors?.length ||
0}
{monitorState?.monitorsSummary?.monitors?.monitors
?.length || 0}
</Box>
{/* TODO - add search bar */}
</Stack>