* chore: code split sagas and reducers index file * fix: update imports * chore: remove acl reducers file on ce * fix: code split reducers properly * chore: remove unnecessary import * chore: split root sagas file
9 lines
256 B
TypeScript
9 lines
256 B
TypeScript
import { AppState } from "@appsmith/reducers";
|
|
|
|
export const getHelpModalOpen = (state: AppState): boolean =>
|
|
state.ui.help.modalOpen;
|
|
|
|
export const getDefaultRefinement = (state: AppState): string => {
|
|
return state.ui.help.defaultRefinement || "";
|
|
};
|