Don't update pathPrefix in settings on every App render

Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
Julius Volz 2024-09-04 17:18:41 +02:00
parent d0ccbd2eb5
commit f3f324be89

View file

@ -52,7 +52,7 @@ import TSDBStatusPage from "./pages/TSDBStatusPage";
import FlagsPage from "./pages/FlagsPage";
import ConfigPage from "./pages/ConfigPage";
import AgentPage from "./pages/AgentPage";
import { Suspense } from "react";
import { Suspense, useEffect } from "react";
import ErrorBoundary from "./components/ErrorBoundary";
import { ThemeSelector } from "./components/ThemeSelector";
import { Notifications } from "@mantine/notifications";
@ -192,7 +192,10 @@ function App() {
const pathPrefix = getPathPrefix(window.location.pathname);
const dispatch = useAppDispatch();
dispatch(updateSettings({ pathPrefix }));
useEffect(() => {
dispatch(updateSettings({ pathPrefix }));
}, [pathPrefix]);
const { agentMode } = useSettings();