Skip to content

Commit

Permalink
fix(typescript): added missing readonly prefix to TabsManager tabs prop
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Sep 12, 2021
1 parent 5891a32 commit 45d9458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tabs/src/TabsManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export interface TabsManagerProps
/**
* The list of tabs that should be controlled by the tabs manager.
*/
tabs: (TabConfig | ReactElement | string)[];
tabs: readonly (TabConfig | ReactElement | string)[];

/**
* The children to render that should eventually have the `Tabs` component and
Expand Down

0 comments on commit 45d9458

Please sign in to comment.