diff --git a/apps/website/app/(extract)/extract-nodes/components/Sidebar.tsx b/apps/website/app/(extract)/extract-nodes/components/Sidebar.tsx
index 627c0fac7..c6e7424b8 100644
--- a/apps/website/app/(extract)/extract-nodes/components/Sidebar.tsx
+++ b/apps/website/app/(extract)/extract-nodes/components/Sidebar.tsx
@@ -3,7 +3,7 @@ import { useRef } from "react";
import { Button } from "@repo/ui/components/ui/button";
import { Checkbox } from "@repo/ui/components/ui/checkbox";
import { Textarea } from "@repo/ui/components/ui/textarea";
-import { ChevronDown, Upload } from "lucide-react";
+import { Upload } from "lucide-react";
import { NODE_TYPE_DEFINITIONS } from "~/types/extraction";
const SECTION_LABEL_CLASS =
@@ -16,6 +16,9 @@ type SidebarProps = {
onResearchQuestionChange: (value: string) => void;
selectedTypes: Set;
onToggleType: (candidateTag: string) => void;
+ onExtract: () => void;
+ canExtract: boolean;
+ isExtracting: boolean;
};
export const Sidebar = ({
@@ -25,6 +28,9 @@ export const Sidebar = ({
onResearchQuestionChange,
selectedTypes,
onToggleType,
+ onExtract,
+ canExtract,
+ isExtracting,
}: SidebarProps): React.ReactElement => {
const fileInputRef = useRef(null);
@@ -92,17 +98,6 @@ export const Sidebar = ({
)}
-
- Model
-
-
-
-