diff --git a/src/pay/components/PayButton.tsx b/src/pay/components/PayButton.tsx index 8f044239f4c..005679d8755 100644 --- a/src/pay/components/PayButton.tsx +++ b/src/pay/components/PayButton.tsx @@ -6,7 +6,7 @@ import { usePayContext } from './PayProvider'; export function PayButton({ text = 'Pay with Crypto' }: { text?: string }) { const { lifecycleStatus, handleSubmit } = usePayContext(); - const isLoading = lifecycleStatus === 'loading'; + const isLoading = lifecycleStatus?.statusName === 'transactionPending'; return (