Skip to content

Commit 973e70d

Browse files
committed
Fixed lint error
1 parent c737b37 commit 973e70d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/react-table/src/demos/examples/TableSortableResponsive.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export const TableSortableResponsive: React.FunctionComponent = () => {
5454
returnValue = Object.values(a)[sortIndex] - Object.values(b)[sortIndex];
5555
} else {
5656
// string sort using natural sort
57-
returnValue = Object.values(a)[sortIndex].localeCompare(Object.values(b)[sortIndex], undefined, {numeric: true});
57+
returnValue = Object.values(a)[sortIndex].localeCompare(Object.values(b)[sortIndex], undefined, { numeric: true });
5858
}
5959
if (sortDirection === 'desc') {
6060
return returnValue * -1;

0 commit comments

Comments
 (0)