Skip to content

Commit 51bf2b9

Browse files
committed
k
1 parent dacf4a5 commit 51bf2b9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

web/src/app/admin/assistants/AssistantEditor.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import { generateRandomIconShape, createSVG } from "@/lib/assistantIconUtils";
44

55
import { CCPairBasicInfo, DocumentSet, User } from "@/lib/types";
6-
import Italic from "@/components/ui/italic";
76
import { Separator } from "@/components/ui/separator";
87
import { Button } from "@/components/ui/button";
98
import { IsPublicGroupSelector } from "@/components/IsPublicGroupSelector";

web/src/components/ui/button.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,16 @@ export interface ButtonProps
7676
asChild?: boolean;
7777
icon?: React.ElementType;
7878
tooltip?: string;
79+
variant?: string;
80+
size?: string;
7981
reverse?: boolean;
8082
}
8183

8284
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
8385
(
8486
{
8587
className,
86-
variant,
88+
variant = "default",
8789
size = "sm",
8890
asChild = false,
8991
icon: Icon,

0 commit comments

Comments
 (0)