Skip to content

Commit

Permalink
fix: redeem code success redirect to old landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
duchunter committed Jun 10, 2024
1 parent be31b67 commit 1e8f94b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/renderer/components/pages/lifetime/RedeemForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,11 @@ export default {
yay () {
this.showSuccessDialog = false
window.open('/', '_blank')
let url = 'https://locker.io'
if (this.locale !== 'en') {
url += `/${this.locale}`
}
window.open(url, '_blank')
}
}
}
Expand Down

0 comments on commit 1e8f94b

Please sign in to comment.