Skip to content

Commit

Permalink
Merge pull request #13782 from artsy/lilyfromseattle/modal-bug
Browse files Browse the repository at this point in the history
fix(AMBER-342): show submitted order modal for private artworks
  • Loading branch information
damassi authored Apr 23, 2024
2 parents 445801a + 199027d commit 5481e5a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/Apps/Artwork/ArtworkApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -322,12 +322,11 @@ export const ArtworkApp: React.FC<Props> = props => {
<Spacer y={6} />

<RecentlyViewed />

{!!submittedOrderId && (
<SubmittedOrderModalQueryRenderer orderId={submittedOrderId} />
)}
</>
)}
{!!submittedOrderId && (
<SubmittedOrderModalQueryRenderer orderId={submittedOrderId} />
)}
</>
)
}
Expand Down

0 comments on commit 5481e5a

Please sign in to comment.