diff --git a/.github/workflows/alpha-storybook-publish.yml b/.github/workflows/alpha-storybook-publish.yml index 523e6af4..5f8a8232 100644 --- a/.github/workflows/alpha-storybook-publish.yml +++ b/.github/workflows/alpha-storybook-publish.yml @@ -3,7 +3,7 @@ name: Publish Alpha Storybook on: push: branches: - - master + - main - alpha jobs: diff --git a/.github/workflows/deploy-ui-kit-lib.yml b/.github/workflows/deploy-ui-kit-lib.yml index ee4612be..f01cea53 100644 --- a/.github/workflows/deploy-ui-kit-lib.yml +++ b/.github/workflows/deploy-ui-kit-lib.yml @@ -3,7 +3,7 @@ name: Release UI Kit on: push: branches: - - master + - main - alpha - beta diff --git a/.github/workflows/live-storybook-publish.yml b/.github/workflows/live-storybook-publish.yml index ebb30339..0c42d3c8 100644 --- a/.github/workflows/live-storybook-publish.yml +++ b/.github/workflows/live-storybook-publish.yml @@ -3,7 +3,7 @@ name: Publish Live Storybook on: push: branches: - - master + - main jobs: storybook-publish: diff --git a/src/components/Tabs/TabsItem.tsx b/src/components/Tabs/TabsItem.tsx index 0f220c3d..d3978e3e 100644 --- a/src/components/Tabs/TabsItem.tsx +++ b/src/components/Tabs/TabsItem.tsx @@ -15,9 +15,8 @@ function TabItem( { children, disabled = false, value = String(children), className, onClick, ...props }: Props, forwardedRef: Ref ) { - const { selectedValue, onSelect, indicatorPosition, setIndicatorPosition } = useContext( - TabsContext - ); + const { selectedValue, onSelect, indicatorPosition, setIndicatorPosition } = + useContext(TabsContext); const isSelected = selectedValue === value; const internalRef = useRef(null);