Skip to content

Commit

Permalink
fix: lint (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristw authored and zhaoyongjie committed Nov 25, 2021
1 parent 8b11105 commit 860dfe4
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -60,6 +60,9 @@ const CIRCLE_STYLE = { strokeWidth: 1.5 };
class LineChart extends PureComponent<Props> {
static defaultProps = defaultProps;

encoder: Encoder;
private createEncoder: () => void;

constructor(props: Props) {
super(props);

Expand All @@ -76,9 +79,6 @@ class LineChart extends PureComponent<Props> {
this.renderChart = this.renderChart.bind(this);
}

encoder: Encoder;
private createEncoder: () => void;

renderChart(dim: Dimension) {
const { width, height } = dim;
const { data, margin, theme } = this.props;
Expand Down

0 comments on commit 860dfe4

Please sign in to comment.