From a19e672899ca1756284ccb11de1acae93690e5f8 Mon Sep 17 00:00:00 2001 From: Nate Kelley Date: Mon, 3 Mar 2025 23:36:26 -0700 Subject: [PATCH] Update Select.tsx --- web/src/components/ui/select/Select.tsx | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/web/src/components/ui/select/Select.tsx b/web/src/components/ui/select/Select.tsx index 18a85447e..0e6044f73 100644 --- a/web/src/components/ui/select/Select.tsx +++ b/web/src/components/ui/select/Select.tsx @@ -1,4 +1,4 @@ -import React, { useState } from 'react'; +import React from 'react'; import { Select as SelectBase, SelectContent, @@ -113,26 +113,3 @@ SelectItemSelector.displayName = 'SelectItemSelector'; const SelectItemSecondaryText: React.FC<{ children: React.ReactNode }> = ({ children }) => { return {children}; }; - -const ExampleUsage = () => { - const [value, setValue] = useState(''); - const values: SelectItem<'1' | '2'>[] = [ - { - value: '1', - label: '1' - }, - { - value: '2', - label: '2' - } - ]; - - return ( -