Skip to content

Commit

Permalink
refactor(Members): remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
arsenijesavic committed Feb 20, 2024
1 parent c572958 commit 6de87b2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/pages/dho/Members.vue
Original file line number Diff line number Diff line change
Expand Up @@ -356,12 +356,9 @@ export default {
async _createInviteLink () {
try {
this.state = STATES.CREATING_LINK
// TODO: Remove when wallet is ready
// const { dhoname } = this.$router.history.current.params
// this.inviteURL = `${ORIGIN}/${dhoname}/login`
const invite = await this.createInviteLink()
const url = new URL('https://join.hypha.earth/')
const url = new URL(process.env.JOIN_URI)
Object.keys(invite).forEach(key => {
url.searchParams.set(key, invite[key])
Expand Down

0 comments on commit 6de87b2

Please sign in to comment.