From b8392b3731f4e975196fe756b9a693328df1948e Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 5 Dec 2025 12:36:06 +0100 Subject: [PATCH] :bug: Fix regression on sending team invitations (#7912) --- frontend/src/app/main/data/team.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/data/team.cljs b/frontend/src/app/main/data/team.cljs index 82faaf6685..8c0a35b8e0 100644 --- a/frontend/src/app/main/data/team.cljs +++ b/frontend/src/app/main/data/team.cljs @@ -362,7 +362,7 @@ [:email ::sm/email] [:role [::sm/one-of ctt/valid-roles]]]]] [:team-id ::sm/uuid] - [:resend? ::sm/boolean]] + [:resend? {:optional true} ::sm/boolean]] [:fn (fn [attrs] (or (contains? attrs :emails) (contains? attrs :invitations)))]])