diff --git a/src/views/DiscoverView.vue b/src/views/DiscoverView.vue index 86f3a9e1b..92be9dc69 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 8c3e14e7e..ba24f850a 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 62acabae4..187aa8c7c 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);