Skip to content

Commit 92bcd0c

Browse files
broken links
1 parent 0905987 commit 92bcd0c

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

packages/docs-gesture-handler/docs/fundamentals/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: introduction
33
title: Introduction
44
sidebar_label: Introduction
55
sidebar_position: 1
6-
slug: /
6+
slug: /fundamentals/introduction
77
---
88

99
Gesture Handler provides a declarative API exposing the native platform's touch and gesture system to React Native. It's designed to be a replacement of React Native's built in touch system called [Gesture Responder System](http://reactnative.dev/docs/gesture-responder-system). Using native touch handling allows to address the performance limitations of React Native's Gesture Responder System. It also provides more control over the platform's native components that can handle gestures on their own. If you want to learn more, we recommend [this talk](https://www.youtube.com/watch?v=V8maYc4R2G0) by [Krzysztof Magiera](https://twitter.com/kzzzf) in which he explains issues with the responder system.

packages/docs-gesture-handler/docs/guides/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Thanks for giving this library a try! We are sorry that you might have encounter
1515
2. When sure your problem hasn't been reported or was reported but the proposed solution doesn't work for you please follow [our issue reporting guidelines](#reporting-issues).
1616
3. You can try seeking help on [Software Mansion Discord](https://discord.com/invite/VemJ4df8Yr).
1717
4. If you feel like reading the source code we highly recommend it, as this is by far the best resource and gives you the most up to date insights into how the library works and what might be causing the bug.
18-
5. If you managed to find the solution consider [contributing](/docs/#contributing) a fix or update our documentation to make this information easier to find for the others in the future.
18+
5. If you managed to find the solution consider [contributing](/docs/fundamentals/introduction#contributing) a fix or update our documentation to make this information easier to find for the others in the future.
1919

2020
## Reporting issues
2121

packages/docs-gesture-handler/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const config = {
8484
},
8585
items: [
8686
{
87-
to: 'docs/',
87+
to: 'docs/fundamentals/introduction',
8888
activeBasePath: 'docs',
8989
label: 'Docs',
9090
position: 'right',

packages/docs-gesture-handler/redirects.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
22
"redirects": [
3+
{
4+
"to": "/docs/fundamentals/introduction",
5+
"from": "/docs/"
6+
},
37
{
48
"to": "/docs/legacy-gestures/pan-gesture",
59
"from": "/docs/gestures/pan-gesture"

0 commit comments

Comments
 (0)