From b0bbe4dca37c771bd7bf0108dc391b3dde87474e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ignacy=20=C5=81=C4=85tka?= Date: Thu, 2 Jan 2025 10:00:35 +0100 Subject: [PATCH] Fix invalid link in docs (#6845) ## Summary This PR replaces an invalid link in docs with a valid one. ## Test plan - click the old invalid link (don't) - click the new valid link --- .../docs-reanimated/docs/fundamentals/handling-gestures.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs-reanimated/docs/fundamentals/handling-gestures.mdx b/packages/docs-reanimated/docs/fundamentals/handling-gestures.mdx index fb3602fb4c54..6058cb64bccf 100644 --- a/packages/docs-reanimated/docs/fundamentals/handling-gestures.mdx +++ b/packages/docs-reanimated/docs/fundamentals/handling-gestures.mdx @@ -118,6 +118,6 @@ In this section, we went through the basics of handling gestures with Reanimated ## What's next? -In this article, we've barely scratched the surface of what's possible with gestures in Reanimated. Besides [Tap](https://docs.swmansion.com/react-native-gesture-handler/docs/gestures/tap-gesture) and [Pan](https://docs.swmansion.com/react-native-gesture-handler/docs/gestures/pan-gesture) gestures Gesture Handler comes with many more e.g. [Pinch](https://docs.swmansion.com/react-native-gesture-handler/docs/gestures/pinch-gesture) or [Fling](https://docs.swmansion.com/react-native-gesture-handler/docs/gestures/fling-gesture). We welcome you to dive into the [Quick start](https://docs.swmansion.com/react-native-gesture-handler/docs/fundamentals/quickstart) section of the React Native Gesture Handler documentation and explore all the possibilities that this library comes with. +In this article, we've barely scratched the surface of what's possible with gestures in Reanimated. Besides [Tap](https://docs.swmansion.com/react-native-gesture-handler/docs/gestures/tap-gesture) and [Pan](https://docs.swmansion.com/react-native-gesture-handler/docs/gestures/pan-gesture) gestures Gesture Handler comes with many more e.g. [Pinch](https://docs.swmansion.com/react-native-gesture-handler/docs/gestures/pinch-gesture) or [Fling](https://docs.swmansion.com/react-native-gesture-handler/docs/gestures/fling-gesture). We welcome you to dive into the [Quick start](https://docs.swmansion.com/react-native-gesture-handler/docs/guides/quickstart) section of the React Native Gesture Handler documentation and explore all the possibilities that this library comes with. In [the next section](/docs/fundamentals/glossary), Let's explore a glossary of terms together!