Skip to content

Commit 8633c21

Browse files
committed
Fix link
1 parent 6baef31 commit 8633c21

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Thanks for giving this library a try! We are sorry that you might have encounter
1010

1111
1. Search over the [issues on Github](https://github.com/software-mansion/react-native-gesture-handler/issues). There is a chance someone had this problem in the past and it has been resolved!
1212
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).
13-
3. You can try seeking help on [Software Mansion Discord](discord.com/invite/VemJ4df8Yr).
13+
3. You can try seeking help on [Software Mansion Discord](https://discord.com/invite/VemJ4df8Yr).
1414
4. If you feel like reading the source code I 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.
1515
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.
1616

@@ -113,7 +113,7 @@ In the above cases, you should add a [`"worklet";`](https://docs.swmansion.com/r
113113
```jsx
114114
const callback = () => {
115115
// highlight-next-line
116-
"worklet";
116+
'worklet';
117117
console.log(_WORKLET);
118118
};
119119
const gesture = Gesture.Tap().onBegin(callback);
@@ -122,7 +122,7 @@ const gesture = Gesture.Tap().onBegin(callback);
122122
```jsx
123123
const callback = () => {
124124
// highlight-next-line
125-
"worklet";
125+
'worklet';
126126
console.log(_WORKLET);
127127
};
128128
const gesture = Gesture.Tap();

0 commit comments

Comments
 (0)