Browse Source

fix(insights): Fix bad URL in "Most Time-Consuming Resources" widget (#70969)

Import typo results in bad URL.
George Gritsouk 10 months ago
parent
commit
4693aa8612

+ 1 - 1
static/app/views/performance/landing/widgets/widgets/lineChartListWidget.tsx

@@ -26,8 +26,8 @@ import {useLocation} from 'sentry/utils/useLocation';
 import withApi from 'sentry/utils/withApi';
 import {normalizeUrl} from 'sentry/utils/withDomainRequired';
 import {DEFAULT_RESOURCE_TYPES} from 'sentry/views/performance/browser/resources/resourceView';
+import {BASE_URL as RESOURCES_BASE_URL} from 'sentry/views/performance/browser/resources/settings';
 import {getResourcesEventViewQuery} from 'sentry/views/performance/browser/resources/utils/useResourcesQuery';
-import {BASE_URL as RESOURCES_BASE_URL} from 'sentry/views/performance/browser/webVitals/settings';
 import {BASE_FILTERS, CACHE_BASE_URL} from 'sentry/views/performance/cache/settings';
 import DurationChart from 'sentry/views/performance/charts/chart';
 import {BASE_URL as DATABASE_BASE_URL} from 'sentry/views/performance/database/settings';