Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Codebmk committed Feb 24, 2025
1 parent 12c07e3 commit af3fd5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 18 deletions.
16 changes: 1 addition & 15 deletions netmanager-app/components/Organization/create-group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,7 @@ import {
SelectValue,
} from "@/components/ui/select";
import { useToast } from "@/components/ui/use-toast";
import {
Plus,
Loader2,
ChevronLeft,
Check,
Building2,
Globe,
Briefcase,
Clock,
Link,
Image,
MapPin,
Users,
FileText,
} from "lucide-react";
import { Plus, Loader2, ChevronLeft, Check, Users } from "lucide-react";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm, useFieldArray } from "react-hook-form";
import * as z from "zod";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Textarea } from "@/components/ui/textarea";
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Card, CardContent } from "@/components/ui/card";
import { groupsApi } from "@/core/apis/organizations";
import { useGroupsDetails } from "@/core/hooks/useGroups";
import { toast } from "@/components/ui/use-toast";
import { Skeleton } from "@/components/ui/skeleton";
import { UsersIcon, Globe, FileText } from "lucide-react";
import { useMutation, useQueryClient } from "@tanstack/react-query";

const formatTitle = (title: string) => {
Expand Down
2 changes: 1 addition & 1 deletion netmanager-app/core/hooks/useRoles.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useQuery, UseQueryOptions } from "@tanstack/react-query";
import { useAppDispatch, useAppSelector } from "../redux/hooks";
import { useAppDispatch } from "../redux/hooks";
import { roles } from "../apis/roles";
import { setRoles, setError } from "../redux/slices/rolesSlice";
import { AxiosError } from "axios";
Expand Down

0 comments on commit af3fd5c

Please sign in to comment.