MobileNav Bug Fix

This commit is contained in:
2025-04-12 23:44:04 -04:00
parent 841717ed12
commit 39cd1be851

View File

@@ -9,7 +9,9 @@ import {
User as UserImage,
} from "lucide-react";
const Footer = () => {
import { useDevice } from "@/lib/context/DeviceContext";
const MobileNav = () => {
const { isAuthenticated } = useDevice();
@@ -35,4 +37,4 @@ const Footer = () => {
);
};
export default Footer;
export default MobileNav;