diff --git a/app/routes/_.cms.tutorials/tutorial-list.tsx b/app/routes/_.cms.tutorials/tutorial-list.tsx index 906c108..f706628 100644 --- a/app/routes/_.cms.tutorials/tutorial-list.tsx +++ b/app/routes/_.cms.tutorials/tutorial-list.tsx @@ -3,16 +3,16 @@ import type { SerializeFrom } from "@remix-run/cloudflare"; import type { UUID } from "~/utils/uuid"; import { useFetcher, useLoaderData } from "@remix-run/react"; +import { useId } from "react"; import { Trans } from "react-i18next"; import { useT } from "~/helpers/use-i18n.hook"; import { Button } from "~/ui/Button"; import { Form } from "~/ui/Form"; import { Link } from "~/ui/Link"; +import { Tag, TagGroup } from "~/ui/TagGroup"; import { INTENT } from "./types"; -import { Tag, TagGroup } from "~/ui/TagGroup"; -import { useId } from "react"; export function TutorialList() { let { tutorials } = useLoaderData(); @@ -57,14 +57,6 @@ function Item(props: ItemProps) { {props.tags.map((tag) => { return {tag}; - // return ( - //
  • - // {tag} - //
  • - // ); })}