fix: fee jump on mount (#8575)

This commit is contained in:
Nuno 2026-05-21 12:17:39 +02:00 committed by GitHub
parent f65ccb5427
commit 092c437557
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1562,15 +1562,15 @@ const SendDetails = () => {
>
<Text style={[styles.feeLabel, stylesHook.feeLabel]}>{loc.send.create_fee}</Text>
{networkTransactionFeesIsLoading ? (
<ActivityIndicator />
) : (
<View style={[styles.feeRow, stylesHook.feeRow]}>
<View style={[styles.feeRow, stylesHook.feeRow]}>
{networkTransactionFeesIsLoading ? (
<ActivityIndicator />
) : (
<Text style={stylesHook.feeValue}>
{feePrecalc.current ? formatFee(feePrecalc.current) : feeRate + ' ' + loc.units.sat_vbyte}
</Text>
</View>
)}
)}
</View>
</Pressable>
{renderCustomFeeWarning()}
{renderCreateButton()}