diff --git a/js/page/publish.js b/js/page/publish.js
index adb2adb29..ae89f4307 100644
--- a/js/page/publish.js
+++ b/js/page/publish.js
@@ -337,7 +337,7 @@ var PublishPage = React.createClass({
(!this.state.name ? '' :
(! this.state.nameResolved ? The name {this.state.name} is available.
: (this.state.myClaimExists ? You already have a claim on the name {this.state.name}. You can use this page to update your claim.
- : The name {this.state.name} is currently claimed for {lbry.formatCredits(this.state.topClaimValue)} credits.)))
+ : The name {this.state.name} is currently claimed for {this.state.topClaimValue} credits.)))
}
What LBRY name would you like to claim for this file?
@@ -358,13 +358,13 @@ var PublishPage = React.createClass({
Bid Amount
- Credits
+ Credits
How much would you like to bid for this name?
{ !this.state.nameResolved ? Since this name is not currently resolved, you may bid as low as you want, but higher bids help prevent others from claiming your name.
- : (this.state.topClaimIsMine ? You currently control this name with a bid of {lbry.formatCredits(this.state.myClaimValue)} credits.
- : (this.state.myClaimExists ? You have a non-winning bid on this name for {lbry.formatCredits(this.state.myClaimValue)} credits.
- To control this name, you'll need to increase your bid to at least {lbry.formatCredits(this.state.myClaimValue)} credits.
- : You must bid over {lbry.formatCredits(this.state.topClaimValue)} credits to claim this name.)) }
+ : (this.state.topClaimIsMine ? You currently control this name with a bid of {this.state.myClaimValue} credits.
+ : (this.state.myClaimExists ? You have a non-winning bid on this name for {this.state.myClaimValue} credits.
+ To control this name, you'll need to increase your bid to at least {this.state.myClaimValue} credits.
+ : You must bid over {this.state.topClaimValue} credits to claim this name.)) }