import { Card } from 'ui' import { PageSection, PageSectionContent, PageSectionDescription, PageSectionMeta, PageSectionSummary, PageSectionTitle, } from 'ui-patterns/PageSection' import { HotkeyToggle } from './HotkeyToggle' import { SHORTCUT_DEFINITIONS } from '@/state/shortcuts/registry' const SHORTCUT_ORDER = Object.values(SHORTCUT_DEFINITIONS).filter( (definition) => definition.showInSettings !== false ) export const HotkeySettings = () => { return ( Keyboard shortcuts Choose which shortcuts stay active while working in the dashboard. {SHORTCUT_ORDER.map((definition, index) => ( ))} ) }