Skip to content

Commit f59390c

Browse files
committed
fix for lint
1 parent 0b584b1 commit f59390c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/lib/fragments/AgGrid.react.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -532,8 +532,12 @@ export function DashAgGrid(props) {
532532
return convertMaybeFunctionNoParams(value);
533533
}
534534
}
535-
return map((v, t) => {
536-
if (typeof v === 'object' && v !== null && !Array.isArray(v)) {
535+
return map((v) => {
536+
if (
537+
typeof v === 'object' &&
538+
v !== null &&
539+
!Array.isArray(v)
540+
) {
537541
if (typeof v.function === 'string') {
538542
return convertMaybeFunctionNoParams(v);
539543
}

0 commit comments

Comments
 (0)