From 17c632eb1694460d7f07c61b7b973501c0cce2eb Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Wed, 13 Dec 2023 20:19:29 -0700 Subject: [PATCH] on brand new ID, go back home (plus some task adjustments) --- project.task.yaml | 3 +-- src/views/NewIdentifierView.vue | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/project.task.yaml b/project.task.yaml index a68406e..2e0598f 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -15,7 +15,7 @@ tasks: - remove "notification push server" advanced setting since it only makes sense on the current domain - prompt user to install on their home screen -- back-and-forth on project & discovery page led to "You need an identity to load your projects." error when I had an identity +- back-and-forth on discovery & project pages led to "You need an identity to load your projects." error on product page when I had an identity - fix the projects on /discover to show the issuer (currently all "Someone Anonymous") - .3 fix the Project-location-selection map display to not show on top of bottom icons (and any other UI tweaks on the map flow) assignee-group:ui @@ -25,7 +25,6 @@ tasks: - .5 If notifications are not enabled, add message to front page with link/button to enable - 01 server - show all claim details when issued by the issuer -- fix notification error when first loading the app - add note after contact addition that they can see your info - enhance help page instructions for debugging - add way to test quickly a push notification diff --git a/src/views/NewIdentifierView.vue b/src/views/NewIdentifierView.vue index a758be7..f518e03 100644 --- a/src/views/NewIdentifierView.vue +++ b/src/views/NewIdentifierView.vue @@ -88,7 +88,7 @@ export default class NewIdentifierView extends Vue { this.loading = false; setTimeout(() => { - this.$router.push({ name: "account" }); + this.$router.push({ name: "home" }); }, 1000); } }