процент линейного графика исправлен

This commit is contained in:
Tamara 2024-05-04 03:38:17 +03:00
parent 38ab273404
commit 1db9e54458

@ -75,7 +75,7 @@ const FunnelItem = ({ title, percent, index, funnel }: FunnelItemProps) => {
<Box sx={{ display: "flex", alignItems: "center", flexGrow: 1 }}>
<LinearProgress
variant="determinate"
value={percent * 100 > 100 ? 100 : percent * 10}
value={percent * 100 > 100 ? 100 : percent * 100}
sx={{
width: "100%",
marginRight: "15px",