From df0a58af93ad090365fd445aa091b5f69da3f77a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elena=20Torr=C3=B3?= Date: Thu, 21 May 2026 09:26:53 +0200 Subject: [PATCH] :bug: Fix team members request loop on dashboard --- frontend/src/app/main/ui/dashboard/team.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/main/ui/dashboard/team.cljs b/frontend/src/app/main/ui/dashboard/team.cljs index 3629ee7658..bdaca1c549 100644 --- a/frontend/src/app/main/ui/dashboard/team.cljs +++ b/frontend/src/app/main/ui/dashboard/team.cljs @@ -540,14 +540,14 @@ (mf/defc team-members-page* [{:keys [team profile]}] - (mf/with-effect [team] + (mf/with-effect [(:id team)] (dom/set-html-title (tr "title.team-members" (if (:is-default team) (tr "dashboard.your-penpot") (:name team))))) - (mf/with-effect [team] + (mf/with-effect [(:id team)] (st/emit! (dtm/fetch-members))) [:* @@ -1069,7 +1069,7 @@ (tr "dashboard.your-penpot") (:name team))))) - (mf/with-effect [(:id team) (:members team)] + (mf/with-effect [(:id team)] (st/emit! (dtm/fetch-invitations))) [:*