Skip to content

Commit

Permalink
fix more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
talentlessguy committed Aug 27, 2024
1 parent e45ecbd commit 0745ce2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export const DynamicPopover = ({

const isControlled = isOpen !== undefined

const [{ status: state }, toggle] = useTransition({
const [state, toggle] = useTransition({
preEnter: true,
exit: true,
mountOnEnter: true,
Expand Down
2 changes: 1 addition & 1 deletion components/src/components/molecules/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ export const Select = React.forwardRef(
maxInputSize,
)

const [{ status: state }, toggle] = useTransition({
const [state, toggle] = useTransition({
timeout: {
enter: 0,
exit: 300,
Expand Down

0 comments on commit 0745ce2

Please sign in to comment.