We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb80ff6 commit d1bd63cCopy full SHA for d1bd63c
src/ui/components/Checkout/ModalCheckout.vue
@@ -25,10 +25,12 @@ let i18n = i18nBase(['en'])
25
26
const passportPageUrl = computed(() =>
27
window.location.hostname.includes('.prerelease.clubs.place')
28
- ? `https://prerelease.clubs.place/passport/${props.eoa ?? ''}`
+ ? `https://prerelease.clubs.place/passport/${props.eoa ?? ''}/edit`
29
: window.location.hostname.includes('.clubs.place')
30
- ? `https://clubs.place/passport/${props.eoa ?? ''}`
31
- : `http://localhost:${window.location.port}/passport/${props.eoa ?? ''}`
+ ? `https://clubs.place/passport/${props.eoa ?? ''}/edit`
+ : `http://localhost:${window.location.port}/passport/${
32
+ props.eoa ?? ''
33
+ }/edit`
34
)
35
36
const onClickPassport = async () => {
0 commit comments