diff --git a/frontend/src/components/SqueakProfileDetailItem/SqueakProfileDetailItem.js b/frontend/src/components/SqueakProfileDetailItem/SqueakProfileDetailItem.js index 2674dee8..0c59aa87 100644 --- a/frontend/src/components/SqueakProfileDetailItem/SqueakProfileDetailItem.js +++ b/frontend/src/components/SqueakProfileDetailItem/SqueakProfileDetailItem.js @@ -228,14 +228,20 @@ export default function SqueakProfileDetailItem({ function CustomPriceContent() { return ( - - - {' '} - {(squeakProfile.getUseCustomPrice()) ? - <>Selling with custom price: {squeakProfile.getCustomPriceMsat()} msats : - <>Selling with default price - } - + + + {' '} + {(squeakProfile.getUseCustomPrice()) + ? ( + <> + Selling with custom price: + {squeakProfile.getCustomPriceMsat()} + {' '} + msats + + ) + : <>Selling with default price} + ); } @@ -285,9 +291,7 @@ export default function SqueakProfileDetailItem({ - +