Skip to content

Commit

Permalink
fix: fixes causes signup eligibility issues and login query param mes…
Browse files Browse the repository at this point in the history
…saging

GD-161
GD-188
  • Loading branch information
Eddie Ferrer committed Nov 29, 2021
1 parent 37f3e93 commit 4b16b4a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/pages/Causes/Signup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ const pageQuery = gql`query causesSignupEligibilityQuery {
}
lender {
id
loans {
totalCount
}
loanCount
}
}
mySubscriptions(includeDisabled: true) {
Expand Down Expand Up @@ -87,7 +85,7 @@ export default {
}).catch(() => {
// Auth error will be caught here, redirect to login.
return Promise.reject({
path: `/ui-login?cause=${this.cause}`,
path: `/ui-login?cause=${route.query.cause}`,
query: { force: true, doneUrl: route.fullPath }
});
});
Expand Down

0 comments on commit 4b16b4a

Please sign in to comment.