From c5c32be397d65df7640fecd700a86562517864e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Mon, 8 Mar 2021 16:30:56 +0100 Subject: [PATCH] Hack typing fix --- packages/core/lib/components/Schlechtenburg.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/lib/components/Schlechtenburg.tsx b/packages/core/lib/components/Schlechtenburg.tsx index b3223bb..d380f29 100644 --- a/packages/core/lib/components/Schlechtenburg.tsx +++ b/packages/core/lib/components/Schlechtenburg.tsx @@ -53,7 +53,7 @@ export const SbMain = defineComponent({ }, }, - setup(props) { // TODO: why does the typing of props not work here? + setup(props: any) { // TODO: why does the typing of props not work here? const el: Ref = ref(null); useResizeObserver(el, SymEditorDimensions);