Skip to content

Commit 159d264

Browse files
fix lint
1 parent d463546 commit 159d264

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/counterfactuals/src/lib/CounterfactualChart.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ export class CounterfactualChart extends React.PureComponent<
549549
}
550550

551551
// fetch prediction for temporary point
552-
private fetchData(fetchingReference: { [key: string]: any }): void {
552+
private fetchData = (fetchingReference: { [key: string]: any }): void => {
553553
if (!this.props.invokeModel) {
554554
return;
555555
}
@@ -605,7 +605,7 @@ export class CounterfactualChart extends React.PureComponent<
605605
}
606606
}
607607
);
608-
}
608+
};
609609

610610
private generatePlotlyProps(
611611
jointData: JointDataset,

0 commit comments

Comments
 (0)