diff --git a/components/email/email-composer.tsx b/components/email/email-composer.tsx index a463f4ba..c8f865af 100644 --- a/components/email/email-composer.tsx +++ b/components/email/email-composer.tsx @@ -943,11 +943,16 @@ export function EmailComposer({ onChange={(e) => setSelectedIdentityId(e.target.value)} className="flex-1 bg-transparent text-sm text-foreground outline-none cursor-pointer hover:text-muted-foreground transition-colors min-w-0 truncate" > - {identities.map((identity) => ( - - ))} + {identities.map((identity) => { + const displayEmail = subAddressTag + ? generateSubAddress(identity.email, subAddressTag) + : identity.email; + return ( + + ); + })} ) : (