From f8b5d98126579502b4bb9ebcda7cf4a11312338c Mon Sep 17 00:00:00 2001 From: Thomas Zemp Date: Tue, 10 Sep 2024 12:48:05 +0200 Subject: [PATCH] fix: update prop types --- services/plugin/src/Plugin.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/plugin/src/Plugin.tsx b/services/plugin/src/Plugin.tsx index 77ace065..4b3f0471 100644 --- a/services/plugin/src/Plugin.tsx +++ b/services/plugin/src/Plugin.tsx @@ -33,8 +33,8 @@ export const Plugin = ({ }: { pluginSource?: string pluginShortName?: string - height?: string - width?: string + height?: string | number + width?: string | number propsToPass: any }): JSX.Element => { const iframeRef = useRef(null)