Skip to content

Commit

Permalink
k
Browse files Browse the repository at this point in the history
  • Loading branch information
pablonyx committed Oct 30, 2024
1 parent dacf4a5 commit 51bf2b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion web/src/app/admin/assistants/AssistantEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import { generateRandomIconShape, createSVG } from "@/lib/assistantIconUtils";

import { CCPairBasicInfo, DocumentSet, User } from "@/lib/types";
import Italic from "@/components/ui/italic";
import { Separator } from "@/components/ui/separator";
import { Button } from "@/components/ui/button";
import { IsPublicGroupSelector } from "@/components/IsPublicGroupSelector";
Expand Down
4 changes: 3 additions & 1 deletion web/src/components/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,16 @@ export interface ButtonProps
asChild?: boolean;
icon?: React.ElementType;
tooltip?: string;
variant?: string;
size?: string;
reverse?: boolean;
}

const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
(
{
className,
variant,
variant = "default",
size = "sm",
asChild = false,
icon: Icon,
Expand Down

0 comments on commit 51bf2b9

Please sign in to comment.