Skip to content

Commit d1bd63c

Browse files
committed
add /edit
1 parent fb80ff6 commit d1bd63c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/ui/components/Checkout/ModalCheckout.vue

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ let i18n = i18nBase(['en'])
2525
2626
const passportPageUrl = computed(() =>
2727
window.location.hostname.includes('.prerelease.clubs.place')
28-
? `https://prerelease.clubs.place/passport/${props.eoa ?? ''}`
28+
? `https://prerelease.clubs.place/passport/${props.eoa ?? ''}/edit`
2929
: window.location.hostname.includes('.clubs.place')
30-
? `https://clubs.place/passport/${props.eoa ?? ''}`
31-
: `http://localhost:${window.location.port}/passport/${props.eoa ?? ''}`
30+
? `https://clubs.place/passport/${props.eoa ?? ''}/edit`
31+
: `http://localhost:${window.location.port}/passport/${
32+
props.eoa ?? ''
33+
}/edit`
3234
)
3335
3436
const onClickPassport = async () => {

0 commit comments

Comments
 (0)