From bd5ac524f5ad3d4d5dbc572f92296c32dd808500 Mon Sep 17 00:00:00 2001 From: Jacy Date: Tue, 19 Jul 2022 10:46:28 -0700 Subject: [PATCH] Update some welcome links (#3902) Summary: Some old welcome links are 'Page Not Found'. ## Changelog Some old links are 'Page Not Found', so update them as follows: 1. Update "Using Flipper" link to 'https://fbflipper.com/docs/features' 2. Update "Add Flipper Support to Your App" link to 'https://fbflipper.com/docs/getting-started' Pull Request resolved: https://github.com/facebook/flipper/pull/3902 Test Plan: Pass the test on a Mac. Reviewed By: lblasa Differential Revision: D37927376 Pulled By: passy fbshipit-source-id: 0aac129932395e3f2ce3afa8c47cc637f3e814a8 --- desktop/flipper-ui-core/src/sandy-chrome/WelcomeScreen.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/desktop/flipper-ui-core/src/sandy-chrome/WelcomeScreen.tsx b/desktop/flipper-ui-core/src/sandy-chrome/WelcomeScreen.tsx index 647624641..b6ab9f064 100644 --- a/desktop/flipper-ui-core/src/sandy-chrome/WelcomeScreen.tsx +++ b/desktop/flipper-ui-core/src/sandy-chrome/WelcomeScreen.tsx @@ -202,7 +202,7 @@ function WelcomeScreenContent() { icon={} title="Using Flipper" subtitle="Learn how Flipper can help you debug your App" - onClick={openExternal('https://fbflipper.com/docs/features/index')} + onClick={openExternal('https://fbflipper.com/docs/features')} /> } @@ -214,9 +214,7 @@ function WelcomeScreenContent() { icon={} title="Add Flipper Support to Your App" subtitle="Get started with these pointers" - onClick={openExternal( - 'https://fbflipper.com/docs/getting-started/index', - )} + onClick={openExternal('https://fbflipper.com/docs/getting-started')} /> }