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"} 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 (