diff --git a/docs/components/ai-chat-modal.tsx b/docs/components/ai-chat-modal.tsx index 82ab4c14..eaae4ab7 100644 --- a/docs/components/ai-chat-modal.tsx +++ b/docs/components/ai-chat-modal.tsx @@ -10,7 +10,7 @@ import { } from "@/components/ui/dialog"; import { Textarea } from "@/components/ui/textarea"; import { cn } from "@/lib/utils"; -import { Send, Loader2, Bot, User, AlertCircle } from "lucide-react"; +import { Send, Bot, User, AlertCircle } from "lucide-react"; import { MarkdownRenderer } from "./markdown-renderer"; import { betterFetch } from "@better-fetch/fetch"; import { atom } from "jotai"; diff --git a/docs/components/endpoint.tsx b/docs/components/endpoint.tsx index 5bc5e766..5aff3048 100644 --- a/docs/components/endpoint.tsx +++ b/docs/components/endpoint.tsx @@ -1,7 +1,5 @@ "use client"; -import { Check, Copy } from "lucide-react"; import { cn } from "@/lib/utils"; -import { Button } from "./ui/button"; import { useState } from "react"; function Method({ method }: { method: "POST" | "GET" | "DELETE" | "PUT" }) { diff --git a/docs/components/nav-mobile.tsx b/docs/components/nav-mobile.tsx index 2da2c3f4..a75d7f15 100644 --- a/docs/components/nav-mobile.tsx +++ b/docs/components/nav-mobile.tsx @@ -1,5 +1,5 @@ "use client"; -import { ChevronRight, Menu, Search } from "lucide-react"; +import { ChevronRight, Menu } from "lucide-react"; import Link from "next/link"; import { Fragment, createContext, useContext, useState } from "react"; import { @@ -11,7 +11,6 @@ import { import { contents, examples } from "./sidebar-content"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; -import { useSearchContext } from "fumadocs-ui/provider"; interface NavbarMobileContextProps { isOpen: boolean; diff --git a/package.json b/package.json index 0cb60a58..0ff38929 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "clean": "turbo --filter \"./packages/*\" clean && rm -rf node_modules", "format": "biome format . --write", "lint": "biome check .", - "lint:fix": "biome check . --fix", + "lint:fix": "biome check . --fix --unsafe", "release": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --no-git-checks", "release:no-build": "bumpp && pnpm -r publish --access public --no-git-checks --tag next", "release:canary": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --tag canary --no-git-checks",