Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
chgibb committed Sep 18, 2019
1 parent b5bc0fc commit b6672f3
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -34,11 +34,13 @@ export function EditBPTrackOverlay(props: EditBPTrackOverlayProps): JSX.Element
let [showLabels, setShowLabels] = React.useState(props.figure.circularFigureBPTrackOptions.showLabels);
let [direction,setDirection] = React.useState(props.figure.circularFigureBPTrackOptions.direction);

React.useEffect(() => {
React.useEffect(() =>
{
setShowLabels(props.figure.circularFigureBPTrackOptions.showLabels);
},[props.figure.circularFigureBPTrackOptions.showLabels]);

React.useEffect(()=>{
React.useEffect(()=>
{
setDirection(props.figure.circularFigureBPTrackOptions.direction);
},[props.figure.circularFigureBPTrackOptions.direction]);

Expand Down

0 comments on commit b6672f3

Please sign in to comment.