From 0173657477ffcef00b7217ad60ce7b466f050e1b Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Sat, 26 Apr 2025 10:01:34 -0700 Subject: [PATCH] Do not unmount tab content when switching tabs --- frontend/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 446f59e..8484401 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -61,7 +61,7 @@ function CustomTabPanel(props: TabPanelProps) { aria-labelledby={`tab-${index}`} {...other} > - {tab === index && children} + {children} ); }