diff --git a/test/integration/createTippy.test.js b/test/integration/createTippy.test.js index 4da9189c..24215567 100644 --- a/test/integration/createTippy.test.js +++ b/test/integration/createTippy.test.js @@ -462,7 +462,7 @@ describe('instance.setProps()', () => { expect(instance.popper._tippy).toBe(instance); }); - it('changing `trigger` or `touchHold` changes listeners', () => { + it('changing `trigger` changes listeners', () => { const ref = h(); instance = createTippy(ref, defaultProps); diff --git a/website/src/pages/v6/misc.mdx b/website/src/pages/v6/misc.mdx index e3882e39..7d725e3f 100644 --- a/website/src/pages/v6/misc.mdx +++ b/website/src/pages/v6/misc.mdx @@ -83,7 +83,7 @@ click event. Depending on your use case, one of these will be preferred, so user agent checking may be needed. -If neither behavior is preferred, consider using the `touchHold` prop which +If neither behavior is preferred, consider using the `touch` prop which allows the user to see the tooltip while pressing and holding the button, but won't fire a click event unless the click appears to be intentional.