diff options
| author | anderklander <anderklander@gmail.com> | 2018-04-11 13:01:00 +0200 |
|---|---|---|
| committer | anderklander <anderklander@gmail.com> | 2018-04-11 13:45:43 +0200 |
| commit | 2611996ba1a7ba2d4afdc5c76c96db6152847e74 (patch) | |
| tree | f43c7f12ce6da75c8bf46b7f8886c25fa459f91a | |
| parent | 5ef20be2ba830027db0936466f82fc80a2d46473 (diff) | |
| download | mullvadvpn-2611996ba1a7ba2d4afdc5c76c96db6152847e74.tar.xz mullvadvpn-2611996ba1a7ba2d4afdc5c76c96db6152847e74.zip | |
Accordion variable naming
| -rw-r--r-- | app/components/Accordion.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/components/Accordion.js b/app/components/Accordion.js index ca3eeb9883..116d257a40 100644 --- a/app/components/Accordion.js +++ b/app/components/Accordion.js @@ -59,8 +59,8 @@ export default class Accordion extends Component<AccordionProps, AccordionState> } render() { - const { style: _style, height: _height, children, animationDuration: _animationDuration, ...otherProps } = this.props; - const containerStyles = [_style]; + const { style: style, height: _height, children, animationDuration: _animationDuration, ...otherProps } = this.props; + const containerStyles = [style]; if(this.state.animatedValue !== null) { const animatedStyle = Styles.createAnimatedViewStyle({ |
