Skip to content

Commit 1ae6729

Browse files
committed
fix: remove unused imports after lint fixes
1 parent 52a103f commit 1ae6729

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

webview-ui/src/components/settings/ContextManagementSettings.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { HTMLAttributes } from "react"
22
import React from "react"
33
import { useAppTranslation } from "@/i18n/TranslationContext"
4-
import { VSCodeCheckbox, VSCodeTextArea } from "@vscode/webview-ui-toolkit/react"
4+
import { VSCodeCheckbox } from "@vscode/webview-ui-toolkit/react"
55
import { Database, FoldVertical } from "lucide-react"
66

77
import { cn } from "@/lib/utils"
8-
import { Button, Input, Select, SelectContent, SelectItem, SelectTrigger, SelectValue, Slider } from "@/components/ui"
8+
import { Input, Select, SelectContent, SelectItem, SelectTrigger, SelectValue, Slider } from "@/components/ui"
99

1010
import { SetCachedStateField } from "./types"
1111
import { SectionHeader } from "./SectionHeader"

webview-ui/src/components/settings/__tests__/ContextManagementSettings.spec.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ vitest.mock("@/i18n/TranslationContext", () => ({
1010
}))
1111

1212
// Mock vscode utilities - this is necessary since we're not in a VSCode environment
13-
import { vscode } from "@/utils/vscode"
1413

1514
vitest.mock("@/utils/vscode", () => ({
1615
vscode: {

0 commit comments

Comments
 (0)