Skip to content

Commit

Permalink
Tooltip: Fix Ariakit tooltip store usage (#61858)
Browse files Browse the repository at this point in the history
* Tooltip: Fix Ariakit tooltip store usage

* CHANGELOG

Co-authored-by: tyxla <[email protected]>
Co-authored-by: diegohaz <[email protected]>
  • Loading branch information
3 people authored May 22, 2024
1 parent e7eb60a commit 6e8c261
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
### Internal

- Remove usage of deprecated spreading of `key` prop in JSX in CustomSelectControl and FormTokenField components ([#61692](https://github.com/WordPress/gutenberg/pull/61692)).
- Tooltip: Fix Ariakit tooltip store usage ([#61858](https://github.com/WordPress/gutenberg/pull/61858)).

## 27.6.0 (2024-05-16)

Expand Down
5 changes: 1 addition & 4 deletions packages/components/src/tooltip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,7 @@ function UnforwardedTooltip(
}
computedPlacement = computedPlacement || 'bottom';

// Removing the `Ariakit` namespace from the hook name allows ESLint to
// properly identify the hook, and apply the correct linting rules.
const useAriakitTooltipStore = Ariakit.useTooltipStore;
const tooltipStore = useAriakitTooltipStore( {
const tooltipStore = Ariakit.useTooltipStore( {
placement: computedPlacement,
showTimeout: delay,
} );
Expand Down

1 comment on commit 6e8c261

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Flaky tests detected in 6e8c261.
Some tests passed with failed attempts. The failures may not be related to this commit but are still reported for visibility. See the documentation for more information.

🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/9190496571
📝 Reported issues:

Please sign in to comment.