Skip to content

Commit

Permalink
Tooltip: Fix Ariakit tooltip store usage (WordPress#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

0 comments on commit 6e8c261

Please sign in to comment.