mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-08-23 14:52:18 +10:00
chore: add missing translations
This commit is contained in:
@@ -8,8 +8,12 @@ const comboboxMock = vi.hoisted(() => ({
|
||||
props: undefined as { onValueChange?: (value: string[] | null) => void } | undefined,
|
||||
}));
|
||||
|
||||
type ComboboxProps = {
|
||||
onValueChange?: (value: string[] | null) => void;
|
||||
};
|
||||
|
||||
vi.mock("@/components/ui/combobox", () => ({
|
||||
Combobox: (props: { onValueChange?: (value: string[] | null) => void }) => {
|
||||
Combobox: (props: ComboboxProps) => {
|
||||
comboboxMock.props = props;
|
||||
return null;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user