Skip to content

Commit

Permalink
Add deleted domain code
Browse files Browse the repository at this point in the history
  • Loading branch information
ddc22 committed Feb 5, 2025
1 parent 02ecc9f commit 8aac3a8
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions client/components/domains/domain-product-price/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,15 @@ export class DomainProductPrice extends Component {
return (
<div className={ className }>
<div className="domain-product-price__free-text">{ message }</div>
{ this.props.isMappingProduct
? null
: this.props.translate( '%(cost)s/year', {
args: { cost: this.props.price },
} ) }
<div className="domain-product-price__price">
<del>
{ this.props.isMappingProduct
? null
: this.props.translate( '%(cost)s/year', {
args: { cost: this.props.price },
} ) }
</del>
</div>
</div>
);
}
Expand Down

0 comments on commit 8aac3a8

Please sign in to comment.