This commit is contained in:
Nathan Bierema 2025-10-14 10:50:32 -04:00
parent eb544f4116
commit 6784dbb8c5
2 changed files with 2 additions and 0 deletions

View File

@ -36,5 +36,6 @@ export const getDevTools = (location: { search: string }) =>
export function ConnectedDevTools() {
const location = useLocation();
const DevTools = getDevTools(location);
// eslint-disable-next-line react-hooks/static-components
return <DevTools />;
}

View File

@ -47,5 +47,6 @@ export const getDevTools = (location: { search: string }) =>
export function ConnectedDevTools() {
const location = useLocation();
const DevTools = getDevTools(location);
// eslint-disable-next-line react-hooks/static-components
return <DevTools />;
}