mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: add StandardTooltip mock for Anthropic custom headers UI
This commit is contained in:
parent
49d5d38e32
commit
b16fae960b
1 changed files with 2 additions and 0 deletions
|
|
@ -80,6 +80,8 @@ vi.mock("@src/components/ui", () => ({
|
|||
CollapsibleContent: ({ children }: any) => <div>{children}</div>,
|
||||
Slider: ({ children, ...props }: any) => <div {...props}>{children}</div>,
|
||||
Button: ({ children, ...props }: any) => <button {...props}>{children}</button>,
|
||||
// Add StandardTooltip for Anthropic custom headers UI
|
||||
StandardTooltip: ({ children, content }: any) => <div title={content}>{children}</div>,
|
||||
// Add Popover components for ModelPicker
|
||||
Popover: ({ children }: any) => <div>{children}</div>,
|
||||
PopoverTrigger: ({ children }: any) => <div>{children}</div>,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue