Skip to content

Commit 033b26e

Browse files
committed
fixture
Signed-off-by: Arya Pratap Singh <[email protected]>
1 parent 1e2c848 commit 033b26e

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

components/DashboardV2/V2Navbar.tsx

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22
import { ChevronsDown, Github, Menu } from "lucide-react";
3-
import React from "react";
3+
import React , { Suspense } from "react";
44
import {
55
Sheet,
66
SheetContent,
@@ -73,7 +73,7 @@ const featureList: FeatureProps[] = [
7373
},
7474
];
7575

76-
export const V2Navbar = () => {
76+
export const NavigationContent = () => {
7777
const [isOpen, setIsOpen] = React.useState(false);
7878
const { user, loading } = useAuth();
7979
const router = useRouter();
@@ -224,3 +224,11 @@ export const V2Navbar = () => {
224224
</header>
225225
);
226226
};
227+
228+
export const V2Navbar = () => {
229+
return (
230+
<Suspense fallback={<div>Loading...</div>}>
231+
<NavigationContent />
232+
</Suspense>
233+
);
234+
};

0 commit comments

Comments
 (0)