File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import HTMLIframe from './HTMLIframe';
17
17
*/
18
18
const IframeRenderer : CustomBlockRenderer = function IframeRenderer ( props ) {
19
19
const iframeProps = useHtmlIframeProps ( props ) ;
20
- return iframeProps ? React . createElement ( HTMLIframe , iframeProps ) : null ;
20
+ return React . createElement ( HTMLIframe , iframeProps ) ;
21
21
} ;
22
22
23
23
/**
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import { HTMLTable } from './HTMLTable';
17
17
*/
18
18
const TableRenderer : CustomBlockRenderer = function TableRenderer ( props ) {
19
19
const tableProps = useHtmlTableProps ( props ) ;
20
- return tableProps ? React . createElement ( HTMLTable , tableProps ) : null ;
20
+ return React . createElement ( HTMLTable , tableProps ) ;
21
21
} ;
22
22
23
23
/**
You can’t perform that action at this time.
0 commit comments