From ad842872fb392cc3a786b5232c5f745b1e713700 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 30 May 2025 13:49:05 +0200 Subject: [PATCH] :bug: Fix unexpected exception on get-team internal method Because of invalid SQL --- backend/src/app/rpc/commands/teams.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/rpc/commands/teams.clj b/backend/src/app/rpc/commands/teams.clj index da4118c2d1..b77885c059 100644 --- a/backend/src/app/rpc/commands/teams.clj +++ b/backend/src/app/rpc/commands/teams.clj @@ -149,7 +149,7 @@ ON (tpr.profile_id = p.id) WHERE t.deleted_at IS null AND tp.profile_id = ? - ORDER BY tp.created_at ASC;") + ORDER BY tp.created_at ASC") (defn process-permissions [team]