FIX: Dont open screen with loading indicator

This commit is contained in:
Marcos Rodriguez Vélez 2021-06-03 08:45:49 -04:00 committed by GitHub
parent 6ab6e8444f
commit 667f3617d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -56,7 +56,7 @@ const SendDetails = () => {
// state
const [width, setWidth] = useState(Dimensions.get('window').width);
const [isLoading, setIsLoading] = useState(true);
const [isLoading, setIsLoading] = useState(false);
const [wallet, setWallet] = useState(null);
const [walletSelectionOrCoinsSelectedHidden, setWalletSelectionOrCoinsSelectedHidden] = useState(false);
const [isAmountToolbarVisibleForAndroid, setIsAmountToolbarVisibleForAndroid] = useState(false);