From 6ac1d47de1fd2bf9710a73101a5231dad6ea16a2 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Wed, 28 Sep 2022 08:42:49 +0200 Subject: [PATCH] :bug: Fix Internal error when resending invitation email --- CHANGES.md | 1 + frontend/src/app/main/ui/dashboard/team.cljs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 81f1c979d..cb4738617 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -23,6 +23,7 @@ - Fix font search works only with lowercase letters [Taiga #4140](https://tree.taiga.io/project/penpot/issue/4140) - Fix Terms and Privacy links overlapping [Taiga #4137](https://tree.taiga.io/project/penpot/issue/4137) - Fix Cannot take out an element from a group at layers panel by drag [Taiga #4209](https://tree.taiga.io/project/penpot/issue/4209) +- Fix Internal error when resending invitation email [Taiga #4212](https://tree.taiga.io/project/penpot/issue/4212) ## 1.15.3-beta diff --git a/frontend/src/app/main/ui/dashboard/team.cljs b/frontend/src/app/main/ui/dashboard/team.cljs index 98c92857f..85363547d 100644 --- a/frontend/src/app/main/ui/dashboard/team.cljs +++ b/frontend/src/app/main/ui/dashboard/team.cljs @@ -492,7 +492,7 @@ resend-invitation (fn [] - (let [params {:email email + (let [params {:emails [email] :team-id (:id team) :resend? true :role invitation-role}