From 2a2b2a63d7ae702f6186e096ca0374a97c5b781b Mon Sep 17 00:00:00 2001 From: Nir Gur Arie Date: Sun, 29 Sep 2024 20:17:07 +0300 Subject: [PATCH] fixes --- packages/sdks/react-sdk/src/components/ApplicationsPortal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sdks/react-sdk/src/components/ApplicationsPortal.tsx b/packages/sdks/react-sdk/src/components/ApplicationsPortal.tsx index bb404438f..e19c4e85d 100644 --- a/packages/sdks/react-sdk/src/components/ApplicationsPortal.tsx +++ b/packages/sdks/react-sdk/src/components/ApplicationsPortal.tsx @@ -38,7 +38,7 @@ const ApplicationsPortalWC = lazy(async () => { const ApplicationsPortal = React.forwardRef< HTMLElement, ApplicationsPortalProps ->(({ logger, theme, debug, widgetId, onLogout }, ref) => { +>(({ logger, theme, debug, widgetId }, ref) => { const [innerRef, setInnerRef] = useState(null); useImperativeHandle(ref, () => innerRef);