Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
akmorrow13 committed Feb 26, 2021
1 parent 499044f commit a8df8aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/viz/GenomeTrack.js
Expand Up @@ -121,7 +121,7 @@ class GenomeTrack extends React.Component<VizProps<TwoBitSource>, State> {
}

render(): any {
return <canvas ref= {this.ref}/>;
return <canvas ref={this.ref}/>;
}

componentDidMount() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/viz/IdiogramTrack.js
Expand Up @@ -46,7 +46,7 @@ class IdiogramTrack extends React.Component<VizProps<DataSource<Chromosome>>, St
}

render(): any {
return <canvas ref = {this.ref} />;
return <canvas ref={this.ref} />;
}

componentDidMount() {
Expand Down

0 comments on commit a8df8aa

Please sign in to comment.