From 7849ffbc2d6d130b18038c884d811eb6e3de3e4e Mon Sep 17 00:00:00 2001 From: David Nguyen Date: Tue, 2 Dec 2025 19:11:13 +1100 Subject: [PATCH] fix: issue Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../app/components/dialogs/envelope-distribute-dialog.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx b/apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx index a92e17d62..15b9987f7 100644 --- a/apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx +++ b/apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx @@ -161,7 +161,10 @@ export const EnvelopeDistributeDialog = ({ recipientAuth: recipient.authOptions, }); - return auth.recipientAccessAuthRequired || auth.recipientActionAuthRequired; + return ( + (auth.recipientAccessAuthRequired || auth.recipientActionAuthRequired) && + !recipient.email + ); }); }, [recipientsWithIndex, envelope.authOptions]);