From 7b9045cea8468c631e5a7da2f7a7adc4ee8d0ee7 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Tue, 22 Mar 2022 00:11:17 +0200 Subject: [PATCH] Allow non-admins to unexpire groups --- app/routes/play/looking.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/app/routes/play/looking.tsx b/app/routes/play/looking.tsx index 5fc2318bf..8a92da4c4 100644 --- a/app/routes/play/looking.tsx +++ b/app/routes/play/looking.tsx @@ -200,7 +200,6 @@ export const action: ActionFunction = async ({ request, context }) => { return redirect("/play"); } case "UNEXPIRE": { - validateIsGroupAdmin(); await LFGGroup.unexpire(ownGroup.id); break; }