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

Commit 33db6f3

Browse files
author
Marc-André Rivet
committed
Fix Ramda usage
1 parent 9c043bd commit 33db6f3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/dash-table/derived/table/fragments.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import * as R from 'ramda';
22
import React from 'react';
33
import { memoizeOneFactory } from 'core/memoizer';
4-
import isNil from 'ramda/es/isNil';
54

65
interface IAccumulator {
76
cells: number;
@@ -68,7 +67,7 @@ export default memoizeOneFactory((
6867
}, cells) :
6968
null;
7069

71-
cells = isNil(fixedColumnCells) ?
70+
cells = R.isNil(fixedColumnCells) ?
7271
cells :
7372
R.map(row => {
7473
const pivot = R.reduceWhile<JSX.Element, IAccumulator>(

0 commit comments

Comments
 (0)