Skip to content

Commit

Permalink
fix: remove sort
Browse files Browse the repository at this point in the history
  • Loading branch information
artemmufazalov committed Oct 21, 2024
1 parent ef8bafe commit 2cdd29f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PaginatedTable/TableChunk.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const TableChunk = <T, F>({
const [isTimeoutActive, setIsTimeoutActive] = React.useState(true);
const [autoRefreshInterval] = useAutoRefreshInterval();

const columnsIds = columns.map((column) => column.name).sort();
const columnsIds = columns.map((column) => column.name);

const queryParams = {
offset: id * limit,
Expand Down

0 comments on commit 2cdd29f

Please sign in to comment.