From 41d88a1e71bcfa5b3af0e465f928662e303443c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Obermu=CC=88ller?= Date: Wed, 22 Nov 2023 11:42:45 +0100 Subject: [PATCH] run typegen --- frontend/src/lib/components/CommandBar/shortcutsLogic.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/lib/components/CommandBar/shortcutsLogic.ts b/frontend/src/lib/components/CommandBar/shortcutsLogic.ts index f9b99469a0b4b..0b7c4ee85a594 100644 --- a/frontend/src/lib/components/CommandBar/shortcutsLogic.ts +++ b/frontend/src/lib/components/CommandBar/shortcutsLogic.ts @@ -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([ path(['lib', 'components', 'CommandBar', 'shortcutsLogic']), connect({ actions: [commandBarLogic, ['hideCommandBar']],