Skip to content

Commit 2cdd29f

Browse files
fix: remove sort
1 parent ef8bafe commit 2cdd29f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/PaginatedTable/TableChunk.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export const TableChunk = <T, F>({
4747
const [isTimeoutActive, setIsTimeoutActive] = React.useState(true);
4848
const [autoRefreshInterval] = useAutoRefreshInterval();
4949

50-
const columnsIds = columns.map((column) => column.name).sort();
50+
const columnsIds = columns.map((column) => column.name);
5151

5252
const queryParams = {
5353
offset: id * limit,

0 commit comments

Comments
 (0)