diff --git a/front/src/modules/comments/components/CommentThreadRelationPicker.tsx b/front/src/modules/comments/components/CommentThreadRelationPicker.tsx index 97aeedab8..93a32afd2 100644 --- a/front/src/modules/comments/components/CommentThreadRelationPicker.tsx +++ b/front/src/modules/comments/components/CommentThreadRelationPicker.tsx @@ -12,7 +12,6 @@ import { IconArrowUpRight } from '@tabler/icons-react'; import { CommentThreadForDrawer } from '@/comments/types/CommentThreadForDrawer'; import CompanyChip from '@/companies/components/CompanyChip'; -import { useHotkeysScopeOnBooleanState } from '@/hotkeys/hooks/useHotkeysScopeOnBooleanState'; import { useScopedHotkeys } from '@/hotkeys/hooks/useScopedHotkeys'; import { InternalHotkeysScope } from '@/hotkeys/types/internal/InternalHotkeysScope'; import { PersonChip } from '@/people/components/PersonChip'; @@ -98,11 +97,6 @@ export function CommentThreadRelationPicker({ commentThread }: OwnProps) { const [isMenuOpen, setIsMenuOpen] = useState(false); const [searchFilter, setSearchFilter] = useState(''); - useHotkeysScopeOnBooleanState( - { scope: InternalHotkeysScope.RelationPicker }, - isMenuOpen, - ); - const theme = useTheme(); const peopleIds = diff --git a/front/src/modules/hotkeys/hooks/useHotkeysScopeOnBooleanState.ts b/front/src/modules/hotkeys/hooks/useHotkeysScopeOnBooleanState.ts index 2b82da138..fd0eb74c4 100644 --- a/front/src/modules/hotkeys/hooks/useHotkeysScopeOnBooleanState.ts +++ b/front/src/modules/hotkeys/hooks/useHotkeysScopeOnBooleanState.ts @@ -10,17 +10,17 @@ export function useHotkeysScopeOnBooleanState( booleanState: boolean, ) { const addToHotkeysScopeStack = useAddToHotkeysScopeStack(); - const removeFromHoteysScopeStack = useRemoveFromHotkeysScopeStack(); + const removeFromHotkeysScopeStack = useRemoveFromHotkeysScopeStack(); useEffect(() => { if (booleanState) { addToHotkeysScopeStack(hotkeysScopeStackItem); } else { - removeFromHoteysScopeStack(hotkeysScopeStackItem.scope); + removeFromHotkeysScopeStack(hotkeysScopeStackItem.scope); } }, [ hotkeysScopeStackItem, - removeFromHoteysScopeStack, + removeFromHotkeysScopeStack, addToHotkeysScopeStack, booleanState, ]);