diff --git a/apps/comments-ui/src/App.js b/apps/comments-ui/src/App.js
index 4bf838c7ab..260aaa605a 100644
--- a/apps/comments-ui/src/App.js
+++ b/apps/comments-ui/src/App.js
@@ -14,8 +14,12 @@ function AuthFrame({adminUrl, onLoad}) {
onLoad();
}, []);
+ const iframeStyle = {
+ display: 'none'
+ };
+
return (
-
+
);
}