Skip to content

Commit

Permalink
v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rzueger authored Jul 20, 2023
2 parents beb5c46 + a4d84c5 commit f881d18
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/wizards/ArrivalWizard/Finish/Finish.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const Finish = props => {
<Message>Landetaxe: {landingFeeMsg}</Message>
</>
)}
{isHomeBase === false && (
{isHomeBase === false ? (
__CARD_PAYMENTS_ENABLED__ ? (
<PaymentMethod itemKey={itemKey} createMovementFromMovement={createMovementFromMovement} finish={finish}
amount={amount}/>
Expand All @@ -54,6 +54,8 @@ const Finish = props => {
<FinishActions itemKey={itemKey} createMovementFromMovement={createMovementFromMovement} finish={finish}/>
</>
)
) : (
<FinishActions itemKey={itemKey} createMovementFromMovement={createMovementFromMovement} finish={finish}/>
)}
</Wrapper>
);
Expand Down

0 comments on commit f881d18

Please sign in to comment.