diff --git a/src/app/[netname]/bounty/[id]/page.tsx b/src/app/[netname]/bounty/[id]/page.tsx index 01f37cbb..9c063c3b 100644 --- a/src/app/[netname]/bounty/[id]/page.tsx +++ b/src/app/[netname]/bounty/[id]/page.tsx @@ -7,15 +7,23 @@ import 'react-toastify/dist/ReactToastify.css'; import BountyClaims from '@/components/bounty/BountyClaims'; import BountyInfo from '@/components/bounty/BountyInfo'; import CreateClaim from '@/components/ui/CreateClaim'; +import NavBarMobile from '@/components/global/NavBarMobile'; +import { useScreenSize } from '@/hooks/useScreenSize'; export default function Bounty({ params }: { params: { id: string } }) { + const isMobile = useScreenSize(); + return ( <>