From 9dcdca49666df4f515f3bb1908f99ccf3e1655e7 Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Thu, 18 Jun 2026 09:49:35 +0200 Subject: [PATCH] Fix content script suggested name input target --- apps/browser-extension/src/entrypoints/contentScript/Popup.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;