mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-07 18:29:41 -06:00
Merge branch 'feat/search-component' of github.com:bluewave-labs/bluewave-uptime into feat/search-component
This commit is contained in:
@@ -106,7 +106,7 @@ TablePaginationActions.propTypes = {
|
||||
onPageChange: PropTypes.func.isRequired,
|
||||
};
|
||||
|
||||
const MonitorTable = memo(({ isAdmin }) => {
|
||||
const MonitorTable = ({ isAdmin }) => {
|
||||
const theme = useTheme();
|
||||
const navigate = useNavigate();
|
||||
const dispatch = useDispatch();
|
||||
@@ -335,10 +335,11 @@ const MonitorTable = memo(({ isAdmin }) => {
|
||||
</Stack>
|
||||
</>
|
||||
);
|
||||
});
|
||||
};
|
||||
|
||||
MonitorTable.propTypes = {
|
||||
isAdmin: PropTypes.bool,
|
||||
};
|
||||
|
||||
export default MonitorTable;
|
||||
const MemoizedMonitorTable = memo(MonitorTable);
|
||||
export default MemoizedMonitorTable;
|
||||
|
||||
Reference in New Issue
Block a user