summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authoranderklander <anderklander@gmail.com>2018-03-02 12:02:39 +0100
committerAndrej Mihajlov <and@mullvad.net>2018-03-26 14:22:10 +0200
commiteabbefd8dcd5a07fce450d0535b22435260eafd8 (patch)
treec2e10298c4a7a0f975aa2663d7d4332c83966cc5
parente4196994e22192cd70817bec9de33d0d3116d97a (diff)
downloadmullvadvpn-eabbefd8dcd5a07fce450d0535b22435260eafd8.tar.xz
mullvadvpn-eabbefd8dcd5a07fce450d0535b22435260eafd8.zip
Corrected state assignment
-rw-r--r--app/components/Login.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/components/Login.js b/app/components/Login.js
index 333d98f520..b99fbdfc23 100644
--- a/app/components/Login.js
+++ b/app/components/Login.js
@@ -42,9 +42,9 @@ export default class Login extends Component<LoginPropTypes, State> {
footerHeight: 0,
animatedFooterValue: Animated.createValue(0),
animatedDropdownValue: Animated.createValue(0),
- animation: Animated.CompositeAnimation,
- footerAnimationStyle: Animated.Style,
- dropdownAnimationStyle: Animated.Style,
+ animation: null,
+ footerAnimationStyle: null,
+ dropdownAnimationStyle: null,
};
constructor(props: LoginPropTypes) {