Merge pull request #44 from SauravL3010/fix-recipient-selector

small fix for recipient-selector
This commit is contained in:
Timur Ercan
2023-04-07 10:52:49 +02:00
committed by GitHub

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>