From f7b1ef9741554a24958c325bba3dca3bd81b561f Mon Sep 17 00:00:00 2001 From: gorkem-bwl Date: Thu, 14 Aug 2025 22:11:47 -0400 Subject: [PATCH] fix: set Server Logs as default tab on Logs page Changed default tab from Diagnostics (index 2) to Server Logs (index 0) when users navigate to the Logs section from the sidebar. This makes Server Logs the active tab by default, which is more intuitive since it's the first tab in the list. --- client/src/Pages/Logs/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/Pages/Logs/index.jsx b/client/src/Pages/Logs/index.jsx index 52aa60199..79c89f282 100644 --- a/client/src/Pages/Logs/index.jsx +++ b/client/src/Pages/Logs/index.jsx @@ -15,7 +15,7 @@ const Logs = () => { const theme = useTheme(); // Local state - const [value, setValue] = useState(2); + const [value, setValue] = useState(0); // Handlers const handleChange = (event, newValue) => {