Skip to content

Commit 45d9458

Browse files
committed
fix(typescript): added missing readonly prefix to TabsManager tabs prop
1 parent 5891a32 commit 45d9458

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tabs/src/TabsManager.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export interface TabsManagerProps
9999
/**
100100
* The list of tabs that should be controlled by the tabs manager.
101101
*/
102-
tabs: (TabConfig | ReactElement | string)[];
102+
tabs: readonly (TabConfig | ReactElement | string)[];
103103

104104
/**
105105
* The children to render that should eventually have the `Tabs` component and

0 commit comments

Comments
 (0)