## Description EE client build is broken due to not following proper code splitting strategy; one file in particularly didn't get split earlier and changes to that file broke the client build on EE. This PR fixes the issues.
11 lines
383 B
TypeScript
11 lines
383 B
TypeScript
import { AppState } from "@appsmith/reducers";
|
|
|
|
export const getQueryPaneConfigSelectedTabIndex = (state: AppState) =>
|
|
state.ui.queryPane.selectedConfigTabIndex;
|
|
|
|
export const getQueryPaneResponseSelectedTab = (state: AppState) =>
|
|
state.ui.queryPane.selectedResponseTab;
|
|
|
|
export const getQueryPaneResponsePaneHeight = (state: AppState) =>
|
|
state.ui.queryPane.responseTabHeight;
|