Skip to content

Commit

Permalink
i18n: string fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chikeichan committed Jan 18, 2022
1 parent 751f6b3 commit 5e0bd9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/SyncStatus/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class SyncStatus extends Component {
}

if (isChangingNodeStatus || isTestingCustomRPC) {
return t('pleaesWait');
return t('pleaseWait');
}

return t('noConnection');
Expand Down
2 changes: 1 addition & 1 deletion app/pages/Auction/BidActionPanel/OpenBid.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class OpenBid extends Component {
} catch (e) {
console.error(e);
logger.error(`Error received from OpenBid - sendOpen]\n\n${e.message}\n${e.stack}\n`);
this.props.showError(t('openSuccessText', e.message));
this.props.showError(t('openFailureText', e.message));
}
};

Expand Down

0 comments on commit 5e0bd9e

Please sign in to comment.