Skip to content

Commit

Permalink
feat: remove new on slider component
Browse files Browse the repository at this point in the history
  • Loading branch information
theo-mesnil committed Mar 11, 2024
1 parent 1239dec commit e246a94
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ workflows:
branches:
ignore: /.*/
tags:
only: /^v5.*/
only: /v5.(\d\d|\d).(\d\d|\d)/
requires:
- test
- lint
Expand Down
2 changes: 1 addition & 1 deletion docs/components/ComponentsList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Link } from './Link'
import * as S from './styles'
import { VersionSelector } from './VersionSelector'

const newItems = ['slider']
const newItems = []

export const ComponentsList = ({ onClick, ...props }) => {
return (
Expand Down
5 changes: 0 additions & 5 deletions packages/Tabs/tests/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ import { act, screen, waitFor } from '@testing-library/react'
import { render } from '../../../utils/tests'
import { Tab, useTab } from '../src'

function getActiveBar({ getByRole }: { getByRole: (id: string) => HTMLElement }) {
const tabList = getByRole('tablist')
return tabList.querySelector('span:last-child')
}

const Tabs = () => {
const tab = useTab({ defaultSelectedId: 'tab1' })

Expand Down

0 comments on commit e246a94

Please sign in to comment.