From 9a506d3755f60aa5a2252987ce2a8254c2c2f3f7 Mon Sep 17 00:00:00 2001 From: Ainar Garipov Date: Mon, 3 Jul 2023 14:23:18 +0300 Subject: [PATCH] clients: fix lint --- client/src/components/Dashboard/Counters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Dashboard/Counters.js b/client/src/components/Dashboard/Counters.js index 039ce462..3b05e074 100644 --- a/client/src/components/Dashboard/Counters.js +++ b/client/src/components/Dashboard/Counters.js @@ -54,7 +54,7 @@ const Counters = ({ refreshButton, subtitle }) => { avgProcessingTime, } = useSelector((state) => state.stats, shallowEqual); const { t } = useTranslation(); - const days = interval / (1000 * 60 * 60 * 24) + const days = interval / (1000 * 60 * 60 * 24); const rows = [ { label: 'dns_query',