diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f36a14..68ad549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # authn.io ChangeLog +## 7.6.0 - 2026-07-dd + +### Changed +- Reword the first party wallet chooser permission dialog to describe + the concrete action ("appear as an option when you're asked to share + or store information on other websites") instead of the abstract + "manage credentials for you". Addresses #150. + ## 7.5.1 - 2026-06-15 ### Fixed diff --git a/web/components/MediatorGreeting.vue b/web/components/MediatorGreeting.vue index f8eab74..3782582 100644 --- a/web/components/MediatorGreeting.vue +++ b/web/components/MediatorGreeting.vue @@ -57,7 +57,8 @@ export default { if(requestType.value === 'credentialStore') { return 'has credentials for you to store:'; } - return 'wants to manage credentials for you:'; + return 'wants to appear as an option when you\'re asked to share or ' + + 'store information on other websites:'; }); return {websiteDesire}; }