diff --git a/desktop/flipper-ui-core/src/sandy-chrome/appinspect/AppInspect.tsx b/desktop/flipper-ui-core/src/sandy-chrome/appinspect/AppInspect.tsx
index 686cdc06d..72dcbb6dd 100644
--- a/desktop/flipper-ui-core/src/sandy-chrome/appinspect/AppInspect.tsx
+++ b/desktop/flipper-ui-core/src/sandy-chrome/appinspect/AppInspect.tsx
@@ -9,8 +9,8 @@
import React from 'react';
import {Typography} from 'antd';
-import {LeftSidebar, SidebarTitle, InfoIcon} from '../LeftSidebar';
-import {Layout, Link, styled} from '../../ui';
+import {LeftSidebar, SidebarTitle} from '../LeftSidebar';
+import {Layout, styled} from '../../ui';
import {theme, useValue} from 'flipper-plugin';
import {PluginList} from './PluginList';
import MetroButton from '../../chrome/MetroButton';
@@ -29,15 +29,6 @@ import {PluginActionsMenu} from '../../chrome/PluginActionsMenu';
const {Text} = Typography;
-const appTooltip = (
- <>
- Inspect apps by selecting connected devices and emulators. Navigate and
- bookmark frequent destinations in the app. Refresh, screenshot and
- screenrecord is also available.{' '}
- Learn More
- >
-);
-
export function AppInspect() {
const metroDevice = useSelector(getMetroDevice);
const client = useSelector(getActiveClient);
@@ -49,16 +40,16 @@ export function AppInspect() {
- {appTooltip}}>
- App Inspect
-
+
+ App Inspect
+
+
+
{isDeviceConnected && isAppConnected && }
{isDeviceConnected && activeDevice && (
-
-
)}