diff options
| author | Dhravya Shah <[email protected]> | 2024-07-20 20:49:33 -0500 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2024-07-20 20:49:33 -0500 |
| commit | 4c96fa349c6fe2409a54ee7bb6c8a43b85a4e109 (patch) | |
| tree | bf56c8602b599f46b3667fd5ff8d49567b365a9b /packages | |
| parent | remove everything inside raw tags (diff) | |
| download | supermemory-4c96fa349c6fe2409a54ee7bb6c8a43b85a4e109.tar.xz supermemory-4c96fa349c6fe2409a54ee7bb6c8a43b85a4e109.zip | |
changes in queryinput home layout
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/ui/shadcn/command.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/ui/shadcn/command.tsx b/packages/ui/shadcn/command.tsx index ed929aa2..e91973be 100644 --- a/packages/ui/shadcn/command.tsx +++ b/packages/ui/shadcn/command.tsx @@ -3,7 +3,6 @@ import * as React from "react"; import { type DialogProps } from "@radix-ui/react-dialog"; import { Command as CommandPrimitive } from "cmdk"; -import { Search } from "lucide-react"; import { cn } from "@repo/ui/lib/utils"; import { Dialog, DialogContent } from "@repo/ui/shadcn/dialog"; @@ -39,7 +38,6 @@ const CommandInput = React.forwardRef< React.ComponentPropsWithoutRef<typeof CommandPrimitive.Input> >(({ className, ...props }, ref) => ( <div className="flex items-center px-3" cmdk-input-wrapper=""> - <Search className="mr-2 h-4 w-4 shrink-0 opacity-50" /> <CommandPrimitive.Input ref={ref} className={cn( |