Skip to content

Commit 7c6e1a1

Browse files
committed
refactor(SeriesSalesList): remove an extra bracket.
1 parent 839f504 commit 7c6e1a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/frontend/src/components/SeriesSalesList.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class SeriesSaleItem extends React.PureComponent {
102102
: (l10n['t_was_selling'] || 'was selling for')
103103
}
104104
{' '}
105-
{ hasBuyer && (<ParticipantLink url={sale.buyerUrl} name={sale.buyerName} />) }
105+
{ hasBuyer && <ParticipantLink url={sale.buyerUrl} name={sale.buyerName} /> }
106106
{' '}
107107
{ hasBuyer && (l10n['t_sold_for'] || 'for') }
108108
{' '}

0 commit comments

Comments
 (0)