From 77716c216551c7facaafebf422359f2a0c2323a8 Mon Sep 17 00:00:00 2001 From: Ajay Singh Date: Thu, 2 Oct 2025 14:29:54 -0700 Subject: [PATCH] stuff --- .../FailedTestsPage/MetricsSection/MetricsSection.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/RepoPage/FailedTestsTab/FailedTestsPage/MetricsSection/MetricsSection.tsx b/src/pages/RepoPage/FailedTestsTab/FailedTestsPage/MetricsSection/MetricsSection.tsx index b2a0ea707e..5d993e3ad7 100644 --- a/src/pages/RepoPage/FailedTestsTab/FailedTestsPage/MetricsSection/MetricsSection.tsx +++ b/src/pages/RepoPage/FailedTestsTab/FailedTestsPage/MetricsSection/MetricsSection.tsx @@ -1,4 +1,4 @@ -import qs from 'qs' +import { parse as qsParse } from 'qs' import { useLocation, useParams } from 'react-router-dom' import { MeasurementInterval } from 'pages/RepoPage/shared/constants' @@ -358,7 +358,7 @@ function MetricsSection() { const { updateParams } = useLocationParams(defaultQueryParams) const location = useLocation() - const queryParams = qs.parse(location.search, { + const queryParams = qsParse(location.search, { ignoreQueryPrefix: true, depth: 1, })