diff --git a/client/src/components/Chat/Input/HeaderOptions.tsx b/client/src/components/Chat/Input/HeaderOptions.tsx index 2cdfcc2212..7b0e01a17e 100644 --- a/client/src/components/Chat/Input/HeaderOptions.tsx +++ b/client/src/components/Chat/Input/HeaderOptions.tsx @@ -7,7 +7,6 @@ import type { TPreset, TInterfaceConfig } from 'librechat-data-provider'; import { EndpointSettings, SaveAsPresetDialog, AlternativeSettings } from '~/components/Endpoints'; import { useSetIndexOptions, useLocalize } from '~/hooks'; import { useGetEndpointsQuery } from '~/data-provider'; -import { useShortcutAriaKey, useShortcutHint } from '~/hooks/useKeyboardShortcuts'; import OptionsPopover from './OptionsPopover'; import PopoverButtons from './PopoverButtons'; import { useChatContext } from '~/Providers'; @@ -25,11 +24,6 @@ export default function HeaderOptions({ const { showPopover, conversation, setShowPopover } = useChatContext(); const { setOption } = useSetIndexOptions(); const { endpoint } = conversation ?? {}; - const toggleRightSidebarHint = useShortcutHint( - 'toggleRightSidebar', - localize('com_ui_model_parameters'), - ); - const toggleRightSidebarAriaKey = useShortcutAriaKey('toggleRightSidebar'); const saveAsPreset = () => { setSaveAsDialogShow(true); @@ -57,12 +51,11 @@ export default function HeaderOptions({