meriadec
7 years ago
No known key found for this signature in database
GPG Key ID: 1D2FC2305E2CB399
2 changed files with
3 additions and
2 deletions
-
src/components/TopBar/ActivityIndicator.js
-
src/components/modals/Send/index.js
|
|
@ -49,6 +49,7 @@ class ActivityIndicatorInner extends Component<Props, State> { |
|
|
|
|
|
|
|
static getDerivedStateFromProps(nextProps: Props, prevState: State) { |
|
|
|
const nextState = { |
|
|
|
...prevState, |
|
|
|
isGlobalSyncStatePending: nextProps.isGlobalSyncStatePending, |
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ -1,10 +1,10 @@ |
|
|
|
// @flow
|
|
|
|
import React, { PureComponent } from 'react' |
|
|
|
import React, { Component } from 'react' |
|
|
|
import { MODAL_SEND } from 'config/constants' |
|
|
|
import Modal from 'components/base/Modal' |
|
|
|
import SendModalBody from './SendModalBody' |
|
|
|
|
|
|
|
class SendModal extends PureComponent<{}> { |
|
|
|
class SendModal extends Component<void> { |
|
|
|
render() { |
|
|
|
return ( |
|
|
|
<Modal |
|
|
|