fix: running formatting script on both client and server directories

This commit is contained in:
Amol
2025-06-14 16:23:05 +05:30
parent 7189c19d55
commit 800fd4792d
6 changed files with 22 additions and 15 deletions

View File

@@ -17,7 +17,13 @@ import { useNavigate } from "react-router-dom";
import PropTypes from "prop-types";
import { useTranslation } from "react-i18next";
const MonitorsTable = ({ shouldRender, monitors, isAdmin, handleActionMenuDelete, isSearching }) => {
const MonitorsTable = ({
shouldRender,
monitors,
isAdmin,
handleActionMenuDelete,
isSearching,
}) => {
// Utils
const theme = useTheme();
const { t } = useTranslation();

View File

@@ -1,18 +1,18 @@
import { useState, useEffect } from "react";
const useDebounce = (value, delay) => {
const [debouncedValue, setDebouncedValue] = useState(value);
const [debouncedValue, setDebouncedValue] = useState(value);
useEffect(() => {
const handler = setTimeout(() => {
setDebouncedValue(value);
}, delay);
useEffect(() => {
const handler = setTimeout(() => {
setDebouncedValue(value);
}, delay);
return () => {
clearTimeout(handler);
};
}, [value, delay]);
return debouncedValue;
return () => {
clearTimeout(handler);
};
}, [value, delay]);
return debouncedValue;
};
export default useDebounce;

View File

@@ -24,7 +24,7 @@ const useMonitorFetch = ({ page, field, filter, rowsPerPage, updateTrigger, sear
types: ["hardware"],
page: page,
rowsPerPage: rowsPerPage,
search: search
search: search,
});
setMonitors(response?.data?.data?.filteredMonitors ?? []);
setSummary(response?.data?.data?.summary ?? {});

View File

@@ -59,7 +59,7 @@ const InfrastructureMonitors = () => {
filter: toFilterStatus,
rowsPerPage,
updateTrigger,
search
search,
});
if (networkError === true) {

View File

@@ -187,7 +187,8 @@ class NetworkService {
*/
async getMonitorsByTeamId(config) {
const { teamId, limit, types, page, rowsPerPage, filter, field, order, search } = config;
const { teamId, limit, types, page, rowsPerPage, filter, field, order, search } =
config;
const params = new URLSearchParams();
if (limit) params.append("limit", limit);

View File

@@ -147,7 +147,7 @@ const getMonitorsByTeamIdQueryValidation = joi.object({
filter: joi.string(),
field: joi.string(),
order: joi.string().valid("asc", "desc"),
search: joi.string()
search: joi.string(),
});
const getMonitorStatsByIdParamValidation = joi.object({