Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 71a799a

Browse files
committed
remove unused shallow
1 parent b9b26b5 commit 71a799a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/components/cellTypes/CheckboxCell.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from "react";
2-
import shallow from "zustand/shallow";
32
import { TableColumn } from "cdm/FolderModel";
43
import { c } from "helpers/StylesHelper";
54
import { CellComponentProps } from "cdm/ComponentsModel";
@@ -11,10 +10,7 @@ function CheckboxCell(props: CellComponentProps) {
1110

1211
const dataActions = tableState.data((state) => state.actions);
1312

14-
const checkboxRow = tableState.data(
15-
(state) => state.rows[row.index],
16-
shallow
17-
);
13+
const checkboxRow = tableState.data((state) => state.rows[row.index]);
1814

1915
const columnsInfo = tableState.columns((state) => state.info);
2016

0 commit comments

Comments
 (0)