fix broken link to Common mistakes (#4468)

This commit is contained in:
k-murakami0609 2018-06-11 02:41:18 +09:00 committed by Brent Vatne
parent 128a95b496
commit 89a24bdc12
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ Object {
"console": [MockFunction] { "console": [MockFunction] {
"calls": Array [ "calls": Array [
Array [ Array [
"You should only render one navigator explicitly in your app, and other navigators should by rendered by including them in that navigator. Full details at: https://v2.reactnavigation.org/docs/common-mistakes.html#explicitly-rendering-more-than-one-navigator", "You should only render one navigator explicitly in your app, and other navigators should by rendered by including them in that navigator. Full details at: https://reactnavigation.org/docs/common-mistakes.html#explicitly-rendering-more-than-one-navigator",
], ],
], ],
}, },

View File

@ -1,3 +1,3 @@
export default function docsUrl(path) { export default function docsUrl(path) {
return `https://v2.reactnavigation.org/docs/${path}`; return `https://reactnavigation.org/docs/${path}`;
} }