Skip to content

Commit

Permalink
chore: update faucet warning text
Browse files Browse the repository at this point in the history
Co-authored-by: Audric Ackermann <[email protected]>
  • Loading branch information
Aerilym and Bilb authored Jul 9, 2024
1 parent 28eeb71 commit 29f7050
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/staking/app/faucet/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ export async function transferTestTokens({
*/
if (faucetEthBalance < faucetGasWarning) {
console.warn(
`Faucet wallet ${TICKER.ETH} balance (${formatEther(faucetEthBalance)} ${TICKER.ETH}) if below the warning threshold (${formatEther(faucetGasWarning)})`
`Faucet wallet ${TICKER.ETH} balance (${formatEther(faucetEthBalance)} ${TICKER.ETH}) is below the warning threshold (${formatEther(faucetGasWarning)})`
);
}

Expand All @@ -450,7 +450,7 @@ export async function transferTestTokens({
*/
if (faucetSENTBalance < faucetTokenWarning) {
console.warn(
`Faucet wallet ${SENT_SYMBOL} balance (${formatSENT(faucetSENTBalance)} ${SENT_SYMBOL}) if below the warning threshold (${formatSENT(faucetTokenWarning)})`
`Faucet wallet ${SENT_SYMBOL} balance (${formatSENT(faucetSENTBalance)} ${SENT_SYMBOL}) is below the warning threshold (${formatSENT(faucetTokenWarning)})`
);
}

Expand Down

0 comments on commit 29f7050

Please sign in to comment.