We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ad39a1 commit 8e47f86Copy full SHA for 8e47f86
src/elements/Table.tsx
@@ -36,6 +36,7 @@ function sortKeysInOrderOf<Obj extends Record<string, unknown>>(
36
): (obj: Obj) => Obj {
37
return (obj: Obj) =>
38
keys.reduce((bodyAccumulator, header) => {
39
+ /* istanbul ignore next */
40
const { [header]: _omitted, ...bodyWithoutHeader } = bodyAccumulator;
41
return {
42
...bodyWithoutHeader,
0 commit comments