Skip to content

Commit

Permalink
Wait to render confirmation until details return (#2850)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbo authored Dec 16, 2020
1 parent 32f5ca2 commit 6ec0c58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const CheckoutPage = props => {
defaultMessage: 'Checkout'
});

if (orderNumber) {
if (orderNumber && orderDetailsData) {
return (
<OrderConfirmationPage
data={orderDetailsData}
Expand Down

0 comments on commit 6ec0c58

Please sign in to comment.