diff --git a/frontend/dashboard/src/store/StoreProvider.tsx b/frontend/dashboard/src/store/StoreProvider.tsx index 4df053193..f1df00172 100644 --- a/frontend/dashboard/src/store/StoreProvider.tsx +++ b/frontend/dashboard/src/store/StoreProvider.tsx @@ -5,14 +5,14 @@ import { AppStore, makeStore } from "./store"; import { Provider } from "react-redux"; type StoreProviderProps = { - children: React.ReactNode; + children: React.ReactNode; } /** * The Redux store provider component. This makes the store accessible globally across the repository */ export default function StoreProvider({ children }: StoreProviderProps) { - const storeRef = useRef(); + const storeRef = useRef(); // Instantiate store singleton: if (!storeRef.current) {