feat: show card to signed in users (#44509)
This commit is contained in:
@ -324,7 +324,7 @@ class DonateForm extends Component<DonateFormProps, DonateFormComponentState> {
|
|||||||
isOneTime ? 'donate.wallet-label' : 'donate.wallet-label-1',
|
isOneTime ? 'donate.wallet-label' : 'donate.wallet-label-1',
|
||||||
{ usd: donationAmount / 100 }
|
{ usd: donationAmount / 100 }
|
||||||
)}:`;
|
)}:`;
|
||||||
const showMinimalPayments = isMinimalForm || !isDonating;
|
const showMinimalPayments = isSignedIn && (isMinimalForm || !isDonating);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
Reference in New Issue
Block a user