Skip to content

Commit

Permalink
chore: address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dariakoko committed Oct 25, 2024
1 parent 088ef73 commit 213ca8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/app/Components/ArtworkGrids/ArtworkSocialSignal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export const ArtworkSocialSignal: React.FC<ArtworkSocialSignalProps> = ({
return (
<Box alignItems="center" flexDirection="row">
<FireIcon />
<Text color={primaryColor} variant="xs" pl="3px" textAlign="center">
<Text color={primaryColor} variant="xs" textAlign="center">
{" "}
Curators’ Pick
</Text>
</Box>
Expand Down
2 changes: 1 addition & 1 deletion src/app/utils/getSaleMessgeOrBidInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const saleMessageOrBidInfo = ({
}

if (collectorSignals?.partnerOffer?.isAvailable) {
const salePrice = artwork.saleMessage && `~${artwork.saleMessage}~`
const salePrice = artwork.saleMessage ? `~${artwork.saleMessage}~` : ""

return `${collectorSignals.partnerOffer.priceWithDiscount?.display}${salePrice}`
}
Expand Down

0 comments on commit 213ca8a

Please sign in to comment.