From 41393e59bbf426425f1d8cbea3c773fc802eaad3 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 12 Mar 2026 15:58:40 +0100 Subject: [PATCH] Add themeCompartmentRef to App.tsx --- src/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.tsx b/src/App.tsx index 2e6b889..44c4354 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -264,6 +264,7 @@ export default function App() { const editorValueRef = useRef(""); const lineNumbersCompartmentRef = useRef(new Compartment()); const editableCompartmentRef = useRef(new Compartment()); + const themeCompartmentRef = useRef(new Compartment()); const historySnapshotRef = useRef(null); const recentOpenRef = useRef(new Map()); const searchRestoreSplitRef = useRef(null);