diff options
| author | anderklander <anderklander@gmail.com> | 2018-03-02 12:02:39 +0100 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2018-03-26 14:22:10 +0200 |
| commit | eabbefd8dcd5a07fce450d0535b22435260eafd8 (patch) | |
| tree | c2e10298c4a7a0f975aa2663d7d4332c83966cc5 /app/components | |
| parent | e4196994e22192cd70817bec9de33d0d3116d97a (diff) | |
| download | mullvadvpn-eabbefd8dcd5a07fce450d0535b22435260eafd8.tar.xz mullvadvpn-eabbefd8dcd5a07fce450d0535b22435260eafd8.zip | |
Corrected state assignment
Diffstat (limited to 'app/components')
| -rw-r--r-- | app/components/Login.js | 6 |
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) { |
