Skip to content

Commit

Permalink
chore: fix import
Browse files Browse the repository at this point in the history
Signed-off-by: SeSo <[email protected]>
  • Loading branch information
Sepehr-Sobhani committed Dec 6, 2024
1 parent 25780a7 commit 0fd9214
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import DataGrid from "@bciers/components/datagrid/DataGrid";
import { TransferRow } from "./types";
import HeaderSearchCell from "@bciers/components/datagrid/cells/HeaderSearchCell";
import ActionCellFactory from "@bciers/components/datagrid/cells/ActionCellFactory";
import fetchTransfersPageData from "./fetchTransferEventsPageData";
import { GridRenderCellParams } from "@mui/x-data-grid";
import transferColumns from "@/registration/app/components/datagrid/models/transfers/transferColumns";
import transferGroupColumns from "@/registration/app/components/datagrid/models/transfers/transferGroupColumns";
import fetchTransferEventsPageData from "@/registration/app/components/transfers/fetchTransferEventsPageData";

const TransfersActionCell = ActionCellFactory({
generateHref: (params: GridRenderCellParams) => {
Expand Down Expand Up @@ -45,7 +45,7 @@ const TransfersDataGrid = ({
<DataGrid
columns={columns}
columnGroupModel={columnGroup}
fetchPageData={fetchTransfersPageData}
fetchPageData={fetchTransferEventsPageData}
paginationMode="server"
initialData={initialData}
/>
Expand Down

0 comments on commit 0fd9214

Please sign in to comment.