From 58a5619073fd6640ab7b0a750a64ddd8167badd5 Mon Sep 17 00:00:00 2001 From: coolbot <76798835+coolbot100s@users.noreply.github.com> Date: Sat, 4 Jul 2026 14:28:08 -0700 Subject: [PATCH] add alt keybind for resetting moderation progress. (#6606) --- packages/moderation/src/data/keybinds.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/moderation/src/data/keybinds.ts b/packages/moderation/src/data/keybinds.ts index 7b62c4c3de..21b13d92a0 100644 --- a/packages/moderation/src/data/keybinds.ts +++ b/packages/moderation/src/data/keybinds.ts @@ -33,6 +33,12 @@ const keybinds: KeybindListener[] = [ description: 'Reset moderation progress', action: (ctx) => ctx.actions.tryResetProgress(), }, + { + id: 'reset-progress-alt', + keybind: 'Alt+R', + description: 'Reset moderation progress', + action: (ctx) => ctx.actions.tryResetProgress(), + }, { id: 'skip-project', keybind: 'Ctrl+Shift+S',