Browse Source

Fix broken links to api sections

Fix #6179
Guy Carmeli 4 years ago
parent
commit
d523ca54a6
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      website/docs/docs-modal.mdx
  2. 1
    1
      website/docs/docs-screen-lifecycle.mdx

+ 1
- 1
website/docs/docs-modal.mdx View File

@@ -123,4 +123,4 @@ from the top of the screen. To disable it, set [swipeToDismiss]() option to fals
123 123
 
124 124
 ## Presentation Style
125 125
 
126
-The [presentation style](options-root.mdx#modalpresentationstyle) determines the look and feel of a screen displayed as modal.
126
+The [presentation style](/react-native-navigation/api/options-root#modalpresentationstyle) determines the look and feel of a screen displayed as modal.

+ 1
- 1
website/docs/docs-screen-lifecycle.mdx View File

@@ -30,7 +30,7 @@ These methods are called when a component is being removed from hierarchy
30 30
 
31 31
 ### Modal
32 32
 
33
-When a modal is displayed, depending on the [modalPresentationStyle](options-root.mdx#modalpresentationstyle), content behind it might be detached from hierarchy. This affects the visibility events which are emitted to the content behind the modal.
33
+When a modal is displayed, depending on the [modalPresentationStyle](/react-native-navigation/api/options-root#modalpresentationstyle), content behind it might be detached from hierarchy. This affects the visibility events which are emitted to the content behind the modal.
34 34
 
35 35
 When Modals with `pageSheet` or `overCurrentContext` modalPresentationStyle are displayed, previous content is still visible to the user. Thus `componentDidDisappear` event is **not** emitted.
36 36