diff --git a/app/layout.tsx b/app/layout.tsx index c4dbc71..90851ad 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -31,7 +31,7 @@ export default function Layout({ user }: { user: User | null }) { {({ open }) => ( <> -
+
diff --git a/app/routes/mission-board.tsx b/app/routes/mission-board.tsx index baafd64..8e2beba 100644 --- a/app/routes/mission-board.tsx +++ b/app/routes/mission-board.tsx @@ -14,15 +14,17 @@ import { ExclamationCircleIcon } from "@heroicons/react/24/outline" import { useLoaderData } from "@remix-run/react" import { Mission, sideObjectiveToType } from "~/components/Mission" import { isKeyOf } from "~/utils/isKeyOf" -// import { -// Select, -// SelectContent, -// SelectGroup, -// SelectItem, -// SelectLabel, -// SelectTrigger, -// SelectValue, -// } from "~/components/ui/select" +import { Form } from "~/components/Form" +import { + Select, + SelectContent, + SelectGroup, + SelectItem, + SelectLabel, + SelectTrigger, + SelectValue, +} from "~/components/ui/select" +import { Label } from "~/components/ui/label" const FILTER_BY_CATEGORY: Record< string, @@ -112,21 +114,24 @@ export default function Missions() { <>

Missions

- {/*
- -
*/} -
+
+
+ + +
+
+
{missions.map((mission) => (