Compare commits

...

3 Commits

Author SHA1 Message Date
Nuno
889d7c5e05
Merge branch 'master' into fix-feejump 2026-05-20 22:04:05 +02:00
Nuno
ac8f4ba1b6
Merge branch 'master' into fix-feejump 2026-05-20 17:29:27 +02:00
ncoelho
7711ddfaf5 fix: fee jump on mount 2026-05-19 22:06:59 +02:00

View File

@ -1557,15 +1557,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()}