From ddd740a44a4e343a6b80b198ce1085a64ebceb91 Mon Sep 17 00:00:00 2001 From: thecodrr Date: Wed, 28 Oct 2020 13:17:05 +0500 Subject: [PATCH] fix: do not show full editor to non logged in users --- apps/web/src/components/editor/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/editor/index.js b/apps/web/src/components/editor/index.js index 694054b39..cb626cd86 100644 --- a/apps/web/src/components/editor/index.js +++ b/apps/web/src/components/editor/index.js @@ -100,7 +100,7 @@ function Editor() { id="quill" ref={quillRef} refresh={sessionState === SESSION_STATES.new} - isSimple={isLoggedin && !isTrial} + isSimple={!isLoggedin || (isLoggedin && !isTrial)} onFocus={() => { toggleProperties(false); }}