diff --git a/src/views/DiscoverView.vue b/src/views/DiscoverView.vue index 86f3a9e1..92be9dc6 100644 --- a/src/views/DiscoverView.vue +++ b/src/views/DiscoverView.vue @@ -223,7 +223,7 @@ export default class DiscoverView extends Vue { if (!identity) { throw new Error( - "An ID is chosen but there are no keys for it so it cannot be used to talk with the service.", + "An ID is chosen but there are no keys for it so it cannot be used to talk with the service. Switch your ID.", ); } diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index 8c3e14e7..ba24f850 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -353,7 +353,7 @@ export default class HomeView extends Vue { if (!identity) { throw new Error( - "An ID is chosen but there are no keys for it so it cannot be used to talk with the service.", + "An ID is chosen but there are no keys for it so it cannot be used to talk with the service. Switch your ID.", ); } diff --git a/src/views/NewEditProjectView.vue b/src/views/NewEditProjectView.vue index 62acabae..187aa8c7 100644 --- a/src/views/NewEditProjectView.vue +++ b/src/views/NewEditProjectView.vue @@ -220,7 +220,7 @@ export default class NewEditProjectView extends Vue { const identity = await this.getIdentity(this.activeDid); if (!identity) { throw new Error( - "An ID is chosen but there are no keys for it so it cannot be used to talk with the service.", + "An ID is chosen but there are no keys for it so it cannot be used to talk with the service. Switch your ID.", ); } this.LoadProject(identity);