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';
1717 */
1818const IframeRenderer : CustomBlockRenderer = function IframeRenderer ( props ) {
1919 const iframeProps = useHtmlIframeProps ( props ) ;
20- return iframeProps ? React . createElement ( HTMLIframe , iframeProps ) : null ;
20+ return React . createElement ( HTMLIframe , iframeProps ) ;
2121} ;
2222
2323/**
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import { HTMLTable } from './HTMLTable';
1717 */
1818const TableRenderer : CustomBlockRenderer = function TableRenderer ( props ) {
1919 const tableProps = useHtmlTableProps ( props ) ;
20- return tableProps ? React . createElement ( HTMLTable , tableProps ) : null ;
20+ return React . createElement ( HTMLTable , tableProps ) ;
2121} ;
2222
2323/**
You can’t perform that action at this time.
0 commit comments