Skip to content

Commit

Permalink
run typegen
Browse files Browse the repository at this point in the history
  • Loading branch information
thmsobrmlr committed Nov 22, 2023
1 parent 4b40c9b commit 41d88a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/lib/components/CommandBar/shortcutsLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { kea, path, connect, afterMount, beforeUnmount } from 'kea'

import { commandBarLogic } from './commandBarLogic'

export const shortcutsLogic = kea([
import type { shortcutsLogicType } from './shortcutsLogicType'

export const shortcutsLogic = kea<shortcutsLogicType>([
path(['lib', 'components', 'CommandBar', 'shortcutsLogic']),
connect({
actions: [commandBarLogic, ['hideCommandBar']],
Expand Down

0 comments on commit 41d88a1

Please sign in to comment.