From 8a02ebc9db316c4ad9ef75697bd47e43a8c6f109 Mon Sep 17 00:00:00 2001 From: Matthias Nannt Date: Mon, 13 Feb 2023 15:25:08 +0100 Subject: [PATCH] fix build error --- apps/web/src/components/forms/shared/FilterNavigation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/forms/shared/FilterNavigation.tsx b/apps/web/src/components/forms/shared/FilterNavigation.tsx index f832120a27..33d007db3b 100644 --- a/apps/web/src/components/forms/shared/FilterNavigation.tsx +++ b/apps/web/src/components/forms/shared/FilterNavigation.tsx @@ -1,6 +1,6 @@ import LoadingSpinner from "@/components/LoadingSpinner"; import { useForm } from "@/lib/forms"; -import { camelToTitle, filterUniqueById, onlyUnique } from "@/lib/utils"; +import { camelToTitle, filterUniqueById } from "@/lib/utils"; import clsx from "clsx"; import { useRouter } from "next/router"; import { useEffect, useState } from "react";