Skip to content

Commit

Permalink
[Rewards 3.0] Fix "$1" in logged out message (#27448)
Browse files Browse the repository at this point in the history
  • Loading branch information
zenparsing authored Feb 1, 2025
1 parent 1b4eac6 commit 57d127b
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,13 @@ export function PaymentForm(props: Props) {
])
}
</h4>
<p>{getString('contributeLoggedOutText')}</p>
<p>
{
formatMessage(getString('contributeLoggedOutText'), [
providerName
])
}
</p>
{web3URL && <p>{getString('contributeLoggedOutWeb3Text')}</p>}
</div>
</div>
Expand Down

0 comments on commit 57d127b

Please sign in to comment.