diff --git a/src/components/LayerUI.tsx b/src/components/LayerUI.tsx
index a447ed2ab5..2cf20d01b6 100644
--- a/src/components/LayerUI.tsx
+++ b/src/components/LayerUI.tsx
@@ -213,7 +213,8 @@ const LayerUI = ({
padding={2}
style={{ zIndex: 1 }}
>
- {actionManager.renderAction("loadScene")}
+ {!appState.viewModeEnabled &&
+ actionManager.renderAction("loadScene")}
{/* // TODO barnabasmolnar/editor-redesign */}
{/* is this fine here? */}
{appState.fileHandle &&
@@ -234,7 +235,8 @@ const LayerUI = ({
/>
)}
{actionManager.renderAction("toggleShortcuts", undefined, true)}
- {actionManager.renderAction("clearCanvas")}
+ {!appState.viewModeEnabled &&
+ actionManager.renderAction("clearCanvas")}