diff --git a/src/chrome/WelcomeScreen.tsx b/src/chrome/WelcomeScreen.tsx index 5969bdae2..6f0849a21 100644 --- a/src/chrome/WelcomeScreen.tsx +++ b/src/chrome/WelcomeScreen.tsx @@ -15,6 +15,7 @@ import Glyph from '../ui/components/Glyph'; import {colors, brandColors} from '../ui/components/colors'; import isProduction from '../utils/isProduction'; import isHeadless from '../utils/isHeadless'; +import constants from '../fb-stubs/constants'; const {shell, remote} = !isHeadless() ? require('electron') : {shell: undefined, remote: undefined}; @@ -138,7 +139,7 @@ export default class WelcomeScreen extends PureComponent { onClick={() => shell && shell.openExternal( - 'https://fbflipper.com/docs/getting-started.html', + 'https://fbflipper.com/docs/features/index.html', ) }> @@ -177,8 +178,7 @@ export default class WelcomeScreen extends PureComponent { - shell && - shell.openExternal('https://github.com/facebook/flipper/issues') + shell && shell.openExternal(constants.FEEDBACK_GROUP_LINK) }> diff --git a/src/fb-stubs/constants.tsx b/src/fb-stubs/constants.tsx index efe59af84..0ec4c4a29 100644 --- a/src/fb-stubs/constants.tsx +++ b/src/fb-stubs/constants.tsx @@ -25,4 +25,6 @@ export default Object.freeze({ ENABLE_SHAREABLE_LINK: false, IS_PUBLIC_BUILD: true, + + FEEDBACK_GROUP_LINK: 'https://github.com/facebook/flipper/issues', });