From d905b594fb9e39301d8aa93abb5e7db4e9cd73f2 Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Fri, 17 Apr 2026 11:35:13 -0700 Subject: [PATCH] fix(imports): rewrite stale @apache-superset/core bare and api/core imports to correct subpaths --- superset-frontend/.storybook/shared/VerifyCORS.tsx | 2 +- .../src/filters/components/Range/RangeFilterPlugin.stories.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/.storybook/shared/VerifyCORS.tsx b/superset-frontend/.storybook/shared/VerifyCORS.tsx index 1803439bbb5..9dd96472f3c 100644 --- a/superset-frontend/.storybook/shared/VerifyCORS.tsx +++ b/superset-frontend/.storybook/shared/VerifyCORS.tsx @@ -18,7 +18,7 @@ */ import { useState, useEffect, useCallback, useRef, ReactNode } from 'react'; -import { t } from '@apache-superset/core'; +import { t } from '@apache-superset/core/translation'; import { SupersetClient, Method, diff --git a/superset-frontend/src/filters/components/Range/RangeFilterPlugin.stories.tsx b/superset-frontend/src/filters/components/Range/RangeFilterPlugin.stories.tsx index c452438af08..d1c6d653f34 100644 --- a/superset-frontend/src/filters/components/Range/RangeFilterPlugin.stories.tsx +++ b/superset-frontend/src/filters/components/Range/RangeFilterPlugin.stories.tsx @@ -18,7 +18,7 @@ */ import { action } from '@storybook/addon-actions'; import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; -import { GenericDataType } from '@apache-superset/core/api/core'; +import { GenericDataType } from '@apache-superset/core/common'; import { supersetTheme } from '@apache-superset/core/theme'; import RangeFilterPlugin from './index'; import transformProps from './transformProps';