From a6527396180fb42edc059e9e2fdfd2a4ad72c8c0 Mon Sep 17 00:00:00 2001 From: Alex Yovev Date: Mon, 15 Apr 2024 21:27:56 -0700 Subject: [PATCH] [@mantine/core] fix: corrected typos in TagsInput documentation --- packages/@mantine/core/src/components/TagsInput/TagsInput.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */