From 1a838809ead7830f533583c4ab58ff3c4fb1d7bb Mon Sep 17 00:00:00 2001 From: Nodirbek Jamoldinov Date: Mon, 23 Feb 2026 13:00:12 +0500 Subject: [PATCH 1/2] remove pencil icon on the amount input on the send confirmation screen --- app/components/amount-input/amount-input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/amount-input/amount-input.tsx b/app/components/amount-input/amount-input.tsx index de1ed3b7f..6273e1e1d 100644 --- a/app/components/amount-input/amount-input.tsx +++ b/app/components/amount-input/amount-input.tsx @@ -146,7 +146,7 @@ export const AmountInput: React.FC = ({ placeholder={LL.AmountInputButton.tapToSetAmount()} onPress={onPressInputButton} value={formattedPrimaryAmount} - iconName="pencil" + iconName={canSetAmount ? "pencil" : undefined} secondaryValue={formattedSecondaryAmount} disabled={!canSetAmount} primaryTextTestProps={"Amount Input Button Amount"} From b5562e9e2c2fe010aea861ada2c5aee14d6a1303 Mon Sep 17 00:00:00 2001 From: Nodirbek Jamoldinov Date: Mon, 23 Feb 2026 13:01:35 +0500 Subject: [PATCH 2/2] fix 'Wallet is offline' blink issue when app launches --- app/components/home-screen/Info.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/home-screen/Info.tsx b/app/components/home-screen/Info.tsx index a4a8fb540..f2be2ee12 100644 --- a/app/components/home-screen/Info.tsx +++ b/app/components/home-screen/Info.tsx @@ -66,7 +66,7 @@ const Info: React.FC = ({ refreshTriggered, error }) => { console.log("List Refundables Err: ", err) } } - if (!netInfo.isInternetReachable) { + if (netInfo.isInternetReachable === false) { return (