diff --git a/packages/keychain/src/components/purchasenew/checkout/onchain/quantity.tsx b/packages/keychain/src/components/purchasenew/checkout/onchain/quantity.tsx index 5cc0a9259..acb0e050a 100644 --- a/packages/keychain/src/components/purchasenew/checkout/onchain/quantity.tsx +++ b/packages/keychain/src/components/purchasenew/checkout/onchain/quantity.tsx @@ -29,8 +29,7 @@ export function QuantityControls({ purchaseLabel: customPurchaseLabel, isApplePayAmountTooLow, }: QuantityControlsProps) { - const purchaseLabel = - customPurchaseLabel || (quantity > 1 ? `Buy ${quantity}` : "Buy"); + const purchaseLabel = customPurchaseLabel || `Buy ${quantity}`; const isQuantityDisabled = (globalDisabled && hasSufficientBalance && !isApplePayAmountTooLow) || isSendingDeposit;