diff --git a/frontend/app/components/Dashboard/Widgets/PredefinedWidgets/SlowestDomains/SlowestDomains.tsx b/frontend/app/components/Dashboard/Widgets/PredefinedWidgets/SlowestDomains/SlowestDomains.tsx
index 0f2e6bf54..c6adbeff6 100644
--- a/frontend/app/components/Dashboard/Widgets/PredefinedWidgets/SlowestDomains/SlowestDomains.tsx
+++ b/frontend/app/components/Dashboard/Widgets/PredefinedWidgets/SlowestDomains/SlowestDomains.tsx
@@ -10,7 +10,7 @@ interface Props {
}
function SlowestDomains(props: Props) {
const { data, metric } = props;
- const firstAvg = metric.data.chart[0] && metric.data.chart[0].errorsCount;
+ const firstAvg = metric.data.chart[0] && metric.data.chart[0].value;
return (