diff --git a/superset-frontend/src/explore/components/ExploreViewContainer/index.tsx b/superset-frontend/src/explore/components/ExploreViewContainer/index.tsx index 816718e36de..a420fd94754 100644 --- a/superset-frontend/src/explore/components/ExploreViewContainer/index.tsx +++ b/superset-frontend/src/explore/components/ExploreViewContainer/index.tsx @@ -358,9 +358,10 @@ interface StateProps { // Combined actions from all action modules used in Explore // Note: These modules export both action creators AND action type constants, -// so we use Record to accommodate the mixed exports +// Using a callable signature to allow TypeScript to understand these are functions interface DispatchProps { - actions: Record; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + actions: Record any>; } type ExploreViewContainerProps = StateProps & DispatchProps & OwnProps;