diff --git a/packages/frontend-core/src/components/grid/stores/datasources/nonPlus.js b/packages/frontend-core/src/components/grid/stores/datasources/nonPlus.js index b89edb348c..a05e1f7d37 100644 --- a/packages/frontend-core/src/components/grid/stores/datasources/nonPlus.js +++ b/packages/frontend-core/src/components/grid/stores/datasources/nonPlus.js @@ -1,7 +1,4 @@ import { get } from "svelte/store" -import QueryFetch from "../../../../fetch/QueryFetch" - -export const RowPageSize = 100000 export const createActions = context => { const { columns, stickyColumn, table, viewV2 } = context diff --git a/packages/frontend-core/src/components/grid/stores/datasources/table.js b/packages/frontend-core/src/components/grid/stores/datasources/table.js index beafd1dcfe..9ced1530ba 100644 --- a/packages/frontend-core/src/components/grid/stores/datasources/table.js +++ b/packages/frontend-core/src/components/grid/stores/datasources/table.js @@ -3,8 +3,6 @@ import TableFetch from "../../../../fetch/TableFetch" const SuppressErrors = true -export const RowPageSize = 100 - export const createActions = context => { const { API, datasource, columns, stickyColumn } = context diff --git a/packages/frontend-core/src/components/grid/stores/datasources/viewV2.js b/packages/frontend-core/src/components/grid/stores/datasources/viewV2.js index 78e8aa8f12..f0572003c2 100644 --- a/packages/frontend-core/src/components/grid/stores/datasources/viewV2.js +++ b/packages/frontend-core/src/components/grid/stores/datasources/viewV2.js @@ -3,8 +3,6 @@ import ViewV2Fetch from "../../../../fetch/ViewV2Fetch" const SuppressErrors = true -export const RowPageSize = 100 - export const createActions = context => { const { API, datasource, columns, stickyColumn } = context