From a8f5bf63b0325fcd8a9f4ff350a387c932a3e288 Mon Sep 17 00:00:00 2001 From: Liz Looney Date: Sun, 21 Sep 2025 23:00:30 -0700 Subject: [PATCH] Call setActiveTab in changeModule function. --- src/App.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index c3cc316e..074247aa 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -368,6 +368,9 @@ const AppContent: React.FC = ({ project, setProject }): React.J await saveModule(); } setCurrentModule(module); + if (module) { + setActiveTab(module.modulePath); + } }; /** Handles toolbox settings modal close. */