small fix for recipient-selector

ListBox options must be unique
This commit is contained in:
Saurav Gurhale
2023-04-06 14:09:08 -04:00
parent e3db462587
commit 593c317bf1

View File

@ -66,7 +66,7 @@ export default function RecipientSelector(props: any) {
selected ? "font-semibold" : "font-normal",
"ml-3 block truncate"
)}>
{`${selectedRecipient?.name} <${selectedRecipient?.email}>`}
{`${recipient?.name} <${recipient?.email}>`}
</span>
</div>