From 02a514f17c742748012b37fdb5e27ae0a6cef308 Mon Sep 17 00:00:00 2001 From: Simon Backx Date: Wed, 31 Aug 2022 14:36:26 +0200 Subject: [PATCH] Removed style option from Frame component --- apps/comments-ui/src/components/Frame.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/comments-ui/src/components/Frame.js b/apps/comments-ui/src/components/Frame.js index db1bca770e..73736906a5 100644 --- a/apps/comments-ui/src/components/Frame.js +++ b/apps/comments-ui/src/components/Frame.js @@ -5,7 +5,6 @@ import IFrame from './IFrame'; const Frame = ({ children, type, - style, ...props }) => { const {stylesUrl} = useContext(AppContext); @@ -63,11 +62,9 @@ const Frame = ({ ); - const mergedStyle = {...iframeStyle, ...style}; - // For now we're using because using a functional component with portal caused some weird issues with modals return ( - );