diff --git a/code/lib/manager-api/src/index.tsx b/code/lib/manager-api/src/index.tsx index 04e4251f91f..51a8e030df1 100644 --- a/code/lib/manager-api/src/index.tsx +++ b/code/lib/manager-api/src/index.tsx @@ -64,7 +64,7 @@ import * as url from './modules/url'; import * as version from './modules/versions'; // eslint-disable-next-line import/no-cycle import * as globals from './modules/globals'; -import { eventToShortcut, shortcutMatchesShortcut, shortcutToHumanString } from './lib/shortcut'; +import { controlOrMetaKey, eventToShortcut, shortcutMatchesShortcut, shortcutToHumanString } from './lib/shortcut'; const { ActiveTabs } = layout; @@ -482,7 +482,7 @@ export function useArgTypes(): API_ArgTypes { return (current?.type === 'story' && current.argTypes) || {}; } -export { eventToShortcut, shortcutToHumanString, shortcutMatchesShortcut }; +export { controlOrMetaKey, eventToShortcut, shortcutToHumanString, shortcutMatchesShortcut }; export { addons } from './lib/addons';