diff --git a/packages/@mantine/core/src/components/TagsInput/TagsInput.tsx b/packages/@mantine/core/src/components/TagsInput/TagsInput.tsx index ed6647d692..b8f6250348 100644 --- a/packages/@mantine/core/src/components/TagsInput/TagsInput.tsx +++ b/packages/@mantine/core/src/components/TagsInput/TagsInput.tsx @@ -54,13 +54,13 @@ export interface TagsInputProps /** Default value for uncontrolled component */ defaultValue?: string[]; - /** Called whe value changes */ + /** Called when value changes */ onChange?: (value: string[]) => void; /** Called when tag is removed */ onRemove?: (value: string) => void; - /** Called whe the clear button is clicked */ + /** Called when the clear button is clicked */ onClear?: () => void; /** Controlled search value */