Skip to content
This repository has been archived by the owner on Dec 10, 2021. It is now read-only.

Commit

Permalink
fix: lint (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristw committed May 5, 2019
1 parent fffd874 commit 67e30a6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
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 67e30a6

Please sign in to comment.