- fix for table value numeric with comma;

This commit is contained in:
Vitalii Kiiko
2025-01-28 14:42:21 +01:00
parent b620378863
commit 7cf1b044be
6 changed files with 5 additions and 28 deletions

View File

@@ -21,7 +21,6 @@ import { Dropdown } from 'primereact/dropdown';
import { Dialog } from 'primereact/dialog';
import { Button } from 'primereact/button';
import DashboardService from '../../service/dashboard-service';
import NumberFlow from '@number-flow/react';
const DomandeInstructorManager = () => {
const [loading, setLoading] = useState(false);
@@ -134,10 +133,6 @@ const DomandeInstructorManager = () => {
const errGetStats = () => {}
const getStatValue = (key, fallback = '') => {
return pathOr(fallback, [key], mainStats);
}
useEffect(() => {
DashboardService.getEvaluationsStats(getStats, errGetStats);
}, []);