Change the loading state of page speed monitors from create monitor redux store to page speed monitor redux store

This commit is contained in:
om-3004
2024-10-19 09:57:18 +05:30
parent 34a13530b3
commit eccf4a8111

View File

@@ -20,7 +20,7 @@ import "./index.css";
const CreatePageSpeed = () => {
const MS_PER_MINUTE = 60000;
const { user, authToken } = useSelector((state) => state.auth);
const { isLoading } = useSelector((state) => state.uptimeMonitors);
const { isLoading } = useSelector((state) => state.pageSpeedMonitors);
const dispatch = useDispatch();
const navigate = useNavigate();
const theme = useTheme();