mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-09-03 12:41:45 +02:00
fix: do not show full editor to non logged in users
This commit is contained in:
@@ -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);
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user