Merge pull request #2257 from BlueWallet/FIX-crash-on-refresh-button-#2256-

FIX: crash on refresh button #2256
This commit is contained in:
GLaDOS 2020-12-03 16:09:35 +00:00 committed by GitHub
commit 766f56767e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -208,7 +208,7 @@ const WalletsList = () => {
{`${loc.transactions.list_title}${' '}`}
</Text>
{isCatalyst && (
<TouchableOpacity style={style} onPress={refreshTransactions} disabled={isLoading}>
<TouchableOpacity style={style} onPress={() => refreshTransactions(true)} disabled={isLoading}>
<Icon name="refresh" type="font-awesome" color={colors.feeText} />
</TouchableOpacity>
)}