From 8473d795ca3deb78e8ed2cd84ecaa629099c0318 Mon Sep 17 00:00:00 2001 From: Dominik Brugger Date: Mon, 30 Oct 2023 15:40:21 +0100 Subject: [PATCH] fix(ContentSwitcher): selectionMode optional type (#15061) --- .../react/src/components/ContentSwitcher/ContentSwitcher.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/src/components/ContentSwitcher/ContentSwitcher.tsx b/packages/react/src/components/ContentSwitcher/ContentSwitcher.tsx index 3f3129543476..384b978973d2 100644 --- a/packages/react/src/components/ContentSwitcher/ContentSwitcher.tsx +++ b/packages/react/src/components/ContentSwitcher/ContentSwitcher.tsx @@ -56,7 +56,7 @@ export interface ContentSwitcherProps /** * Choose whether or not to automatically change selection on focus */ - selectionMode: 'automatic' | 'manual'; + selectionMode?: 'automatic' | 'manual'; /** * Specify the size of the Content Switcher. Currently supports either `sm`, 'md' (default) or 'lg` as an option.