diff --git a/superset-frontend/src/explore/actions/saveModalActions.test.ts b/superset-frontend/src/explore/actions/saveModalActions.test.ts index 2e7be0587413c..062379e5d3224 100644 --- a/superset-frontend/src/explore/actions/saveModalActions.test.ts +++ b/superset-frontend/src/explore/actions/saveModalActions.test.ts @@ -20,7 +20,7 @@ import sinon from 'sinon'; import fetchMock from 'fetch-mock'; import { Dispatch } from 'redux'; import { ADD_TOAST } from 'src/components/MessageToasts/actions'; -import { DatasourceType } from '@superset-ui/core'; +import { DatasourceType, QueryFormData } from '@superset-ui/core'; import { createDashboard, createSlice, @@ -30,7 +30,6 @@ import { updateSlice, getSlicePayload, PayloadSlice, - QueryFormData, } from './saveModalActions'; // Define test constants and mock data using imported types diff --git a/superset-frontend/src/explore/actions/saveModalActions.ts b/superset-frontend/src/explore/actions/saveModalActions.ts index 549dc92c588ea..9c88b462e7a52 100644 --- a/superset-frontend/src/explore/actions/saveModalActions.ts +++ b/superset-frontend/src/explore/actions/saveModalActions.ts @@ -318,4 +318,3 @@ export const getSliceDashboards = throw error; } }; -export { QueryFormData };