Skip to content

Commit

Permalink
style: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliosheinz committed May 20, 2024
1 parent 07ac700 commit 06812a8
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
11 changes: 0 additions & 11 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,13 @@
import { Card } from "~/components/card/";
import { SearchInput } from "~/components/search-input";
import { api } from "~/trpc/react";
import { Filters } from "~/components/filters";
import Fuse from "fuse.js";
import { useMemo } from "react";
import { Skeleton } from "~/components/ui/skeleton";
import { useDebouncedState } from "~/hooks/use-debouced-state";
import { Alert, AlertDescription, AlertTitle } from "~/components/ui/alert";
import { FiInfo } from "react-icons/fi";

const menus = [
{
label: "Disponibilidade",
items: [
{ label: "Com vagas", checked: true },
{ label: "Sem vagas", checked: false },
],
},
];

export default function Home() {
const { data, isLoading } = api.shelter.findAll.useQuery();
const [searchTerm, setSearchTerm] = useDebouncedState("", 300);
Expand Down
1 change: 0 additions & 1 deletion src/components/header/nav/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"use client";
import { useRouter } from "next/navigation";

import { Button } from "~/components/ui/button";
import { useSession, signOut } from "next-auth/react";
Expand Down
2 changes: 1 addition & 1 deletion src/components/header/user/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";
import Image from "next/image";

import { useSession, signIn } from "next-auth/react";
import { useSession } from "next-auth/react";

import { Avatar, AvatarFallback, AvatarImage } from "~/components/ui/avatar";
import { Button } from "~/components/ui/button";
Expand Down

0 comments on commit 06812a8

Please sign in to comment.