From 207dc0e2bbfc227ff6bf4353a0dffabda28c1485 Mon Sep 17 00:00:00 2001 From: IMB11 Date: Fri, 11 Jul 2025 17:41:14 +0100 Subject: [PATCH] fix: keybind for collapse (#3971) --- packages/moderation/data/keybinds.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/moderation/data/keybinds.ts b/packages/moderation/data/keybinds.ts index 8d2bb5dec..9a4e4f02d 100644 --- a/packages/moderation/data/keybinds.ts +++ b/packages/moderation/data/keybinds.ts @@ -23,7 +23,7 @@ const keybinds: KeybindListener[] = [ }, { id: 'toggle-collapse', - keybind: 'Ctrl+Shift+C', + keybind: 'Shift+C', description: 'Toggle collapse/expand', action: (ctx) => ctx.actions.tryToggleCollapse(), },