diff --git a/src/views/Chores/ArchivedTasks.jsx b/src/views/Chores/ArchivedTasks.jsx index f138e95..06db537 100644 --- a/src/views/Chores/ArchivedTasks.jsx +++ b/src/views/Chores/ArchivedTasks.jsx @@ -110,6 +110,7 @@ const ArchivedTasks = () => { // Ctrl/Cmd + A to select all if ( isHoldingCmdOrCtrl && + !event.shiftKey && event.key === 'a' && !['INPUT', 'TEXTAREA'].includes(document.activeElement.tagName) ) { diff --git a/src/views/Chores/MyChores.jsx b/src/views/Chores/MyChores.jsx index 09819e9..141cd36 100644 --- a/src/views/Chores/MyChores.jsx +++ b/src/views/Chores/MyChores.jsx @@ -379,6 +379,7 @@ const MyChores = () => { // Ctrl/Cmd + A to select all - works both in and out of multi-select mode else if ( isHoldingCmdOrCtrl && + !event.shiftKey && event.key === 'a' && !['INPUT', 'TEXTAREA'].includes(document.activeElement.tagName) ) {