Fix getting-started link (#1005)

Summary:
Fixes https://github.com/facebook/flipper/issues/1003
Pull Request resolved: https://github.com/facebook/flipper/pull/1005

Test Plan: https://fbflipper.com/docs/getting-started/index.html works.

Reviewed By: jknoxville

Differential Revision: D20993208

Pulled By: passy

fbshipit-source-id: 1f0e3dd9a8d13f76018117dbc73dd1513a0df3c2
This commit is contained in:
Pascal Hartig
2020-04-14 07:54:37 -07:00
committed by Facebook GitHub Bot
parent a54aad57a7
commit f3bb94fd7c

View File

@@ -14,7 +14,7 @@ class Docs extends React.Component {
return ( return (
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: "window.location.href = '/docs/getting-started.html'", __html: "window.location.href = '/docs/getting-started/index.html'",
}} }}
/> />
); );