diff --git a/apps/browser-extension/src/entrypoints/contentScript/Popup.ts b/apps/browser-extension/src/entrypoints/contentScript/Popup.ts index 3eff6f935..761a53a79 100644 --- a/apps/browser-extension/src/entrypoints/contentScript/Popup.ts +++ b/apps/browser-extension/src/entrypoints/contentScript/Popup.ts @@ -2503,9 +2503,9 @@ export async function createAliasCreationPopup(suggestedNames: string[], rootCon if (target.classList.contains('av-suggested-name')) { const name = target.dataset.name; if (name) { - // Update input with clicked name + // Update input with clicked name. Only fill the service name (title); + // the username must not be derived from the title. inputServiceName.value = name; - customUsername.value = name; // Update the suggested names section const suggestedNamesContainer = target.closest('.av-suggested-names') as HTMLElement;