diff --git a/packages/frontend-core/src/components/grid/layout/Grid.svelte b/packages/frontend-core/src/components/grid/layout/Grid.svelte index fcaf9724c3..c0ad5810b7 100644 --- a/packages/frontend-core/src/components/grid/layout/Grid.svelte +++ b/packages/frontend-core/src/components/grid/layout/Grid.svelte @@ -47,7 +47,6 @@ export let buttonsCollapsedText = null export let darkMode = false export let isCloud = null - export let rowConditions = null export let aiEnabled = false // Unique identifier for DOM nodes inside this instance @@ -106,7 +105,6 @@ darkMode, isCloud, aiEnabled, - rowConditions, }) // Derive min height and make available in context diff --git a/packages/frontend-core/src/components/grid/stores/config.ts b/packages/frontend-core/src/components/grid/stores/config.ts index d6050d1a14..dcc1d34200 100644 --- a/packages/frontend-core/src/components/grid/stores/config.ts +++ b/packages/frontend-core/src/components/grid/stores/config.ts @@ -18,9 +18,8 @@ interface ConfigStore { } > > - notifySuccess: any - notifyError: any - rowConditions: any + notifySuccess: (message: string) => void + notifyError: (message: string) => void } interface PropsContext { @@ -43,7 +42,6 @@ export const createStores = (context: PropsContext): ConfigStore => { const schemaOverrides = getProp("schemaOverrides") const notifySuccess = getProp("notifySuccess") const notifyError = getProp("notifyError") - const rowConditions = getProp("rowConditions") return { datasource, @@ -54,7 +52,6 @@ export const createStores = (context: PropsContext): ConfigStore => { schemaOverrides, notifySuccess, notifyError, - rowConditions, } }