From 78a045c2bb64039c175f7e19386c6a2ffe7e820b Mon Sep 17 00:00:00 2001 From: Nazire Date: Fri, 13 Dec 2024 19:13:21 +0300 Subject: [PATCH] has bug in tag selection, waiting for backend update. Fixed frontend test fails. --- frontend/src/routes/question.tsx | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/frontend/src/routes/question.tsx b/frontend/src/routes/question.tsx index b042e921..940d6a1b 100644 --- a/frontend/src/routes/question.tsx +++ b/frontend/src/routes/question.tsx @@ -10,7 +10,7 @@ import { FullscreenLoading } from "@/components/FullscreenLoading"; import { Badge } from "@/components/ui/badge"; import { Button } from "@/components/ui/button"; import { toast } from "@/components/ui/use-toast"; -import { DifficultyLevel, TagDetails } from "@/services/api/programmingForumSchemas"; +import { TagDetails } from "@/services/api/programmingForumSchemas"; import { useDeleteQuestion as useDeleteQuestionById, @@ -21,19 +21,6 @@ import { useSearchTags, } from "@/services/api/programmingForumComponents"; import { MultiSelect } from "@/components/multi-select"; -import { - Form, - FormControl, - FormField, - FormItem, - FormMessage, -} from "@/components/ui/form"; -import { Info } from "lucide-react"; -import { useForm } from "react-hook-form"; -import { zodResolver } from "@hookform/resolvers/zod"; -import { z } from "zod"; -import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover"; -import SyntaxHighlighter from "react-syntax-highlighter"; import { Input } from "@/components/ui/input"; import { Textarea } from "@/components/ui/textarea"; import useAuthStore from "@/services/auth";