From 303b5b12e0a5682d2506b36544d3637ac9440883 Mon Sep 17 00:00:00 2001 From: Daniel Lautzenheiser Date: Mon, 14 Aug 2023 11:09:13 -0400 Subject: [PATCH] fix: preview not appearing if not using frame --- packages/core/src/components/entry-editor/EditorInterface.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/components/entry-editor/EditorInterface.tsx b/packages/core/src/components/entry-editor/EditorInterface.tsx index 66089ef6..a60a4274 100644 --- a/packages/core/src/components/entry-editor/EditorInterface.tsx +++ b/packages/core/src/components/entry-editor/EditorInterface.tsx @@ -170,7 +170,7 @@ const EditorInterface = ({ } if ('frame' in collection.editor) { - preview = collection.editor.frame ?? true; + frame = collection.editor.frame ?? true; } }