We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cf0d00 commit f619623Copy full SHA for f619623
apps/web/src/components/Layout/Layout.tsx
@@ -1,20 +1,10 @@
1
-import { useEffect } from 'react';
2
-
3
-import { Outlet, useLocation } from 'react-router-dom';
4
5
-import { queryClient } from '@/services/react-query';
+import { Outlet } from 'react-router-dom';
6
7
import { Footer } from '../Footer';
8
import { Navbar } from '../Navbar';
9
import { Sidebar } from '../Sidebar';
10
11
export const Layout = () => {
12
- // const location = useLocation();
13
14
- // useEffect(() => {
15
- // queryClient.clear();
16
- // }, [location.pathname]);
17
18
return (
19
<div className="flex h-screen w-screen flex-col md:flex-row">
20
<div className="absolute md:hidden">
0 commit comments