Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo #223

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/locales/sim_en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"translation": {
"complete": {
"button": "View your contribution",
"description": "<0>Success! You have succesfully completed your contribution in this Summoning Ceremony.</0>",
"description": "<0>Success! You have successfully completed your contribution in this Summoning Ceremony.</0>",
"modal": {
"acknowledgment": "SEQUENCER ACKNOWLEDGEMENT",
"checks": {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/signinRedirect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const SigninRedirect = (props: any) => {
;(async () => {
const params = toParams(props.search.replace(/^\?/, ''))
window.history.replaceState(null, '', window.location.pathname)
// check if login was succesful
// check if login was successful
if (validateSigninParams(params)) {
const notSameWallet = !(await isSameWallet(params.nickname))
if (params.provider === 'Ethereum' && notSameWallet) {
Expand Down