From b0210c0d6d1de2ff69850c1623232c6cbbd1c207 Mon Sep 17 00:00:00 2001 From: Steve Ruiz Date: Tue, 12 Mar 2024 11:45:59 +0000 Subject: [PATCH] Restore export menu content (#3126) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR restores the export menu on dotcom. Before: image After: image ### Change Type - [x] `internal` — Any other changes that don't affect the published package[^2] ### Test Plan 1. Check the menu on tldraw.com / readonly / shared room / snapshot --- apps/dotcom/src/components/LocalEditor.tsx | 2 ++ apps/dotcom/src/components/MultiplayerEditor.tsx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/apps/dotcom/src/components/LocalEditor.tsx b/apps/dotcom/src/components/LocalEditor.tsx index 2439e0573..167b080a1 100644 --- a/apps/dotcom/src/components/LocalEditor.tsx +++ b/apps/dotcom/src/components/LocalEditor.tsx @@ -9,6 +9,7 @@ import { DefaultMainMenu, EditSubmenu, Editor, + ExportFileContentSubMenu, ExtrasGroup, PreferencesGroup, TLComponents, @@ -49,6 +50,7 @@ const components: TLComponents = { + diff --git a/apps/dotcom/src/components/MultiplayerEditor.tsx b/apps/dotcom/src/components/MultiplayerEditor.tsx index b2d039ae7..135d60368 100644 --- a/apps/dotcom/src/components/MultiplayerEditor.tsx +++ b/apps/dotcom/src/components/MultiplayerEditor.tsx @@ -9,6 +9,7 @@ import { DefaultMainMenu, EditSubmenu, Editor, + ExportFileContentSubMenu, ExtrasGroup, OfflineIndicator, PreferencesGroup, @@ -69,6 +70,7 @@ const components: TLComponents = { +