From 08013173c29c309ec1815e154600b5dfc5f139b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CKenzo-Wada=E2=80=9D?= Date: Fri, 20 Sep 2024 22:49:44 +0900 Subject: [PATCH] [@mantine.core] chore: fix typo `whe` --- .../@mantine/core/src/components/MultiSelect/MultiSelect.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@mantine/core/src/components/MultiSelect/MultiSelect.tsx b/packages/@mantine/core/src/components/MultiSelect/MultiSelect.tsx index 823319276be..863a94bd861 100644 --- a/packages/@mantine/core/src/components/MultiSelect/MultiSelect.tsx +++ b/packages/@mantine/core/src/components/MultiSelect/MultiSelect.tsx @@ -49,7 +49,7 @@ export interface MultiSelectProps /** Default value for uncontrolled component */ defaultValue?: string[]; - /** Called whe value changes */ + /** Called when value changes */ onChange?: (value: string[]) => void; /** Called with `value` of the removed item */