diff --git a/desktop/flipper-ui-core/src/sandy-chrome/appinspect/NoDevices.tsx b/desktop/flipper-ui-core/src/sandy-chrome/appinspect/NoDevices.tsx index a0b0764bf..d6114df61 100644 --- a/desktop/flipper-ui-core/src/sandy-chrome/appinspect/NoDevices.tsx +++ b/desktop/flipper-ui-core/src/sandy-chrome/appinspect/NoDevices.tsx @@ -8,9 +8,9 @@ */ import React from 'react'; -import {RocketOutlined} from '@ant-design/icons'; -import {Alert, Typography} from 'antd'; -import {useTrackedCallback} from 'flipper-plugin'; +import {RocketOutlined, WarningOutlined} from '@ant-design/icons'; +import {Alert, Tooltip, Typography} from 'antd'; +import {useTrackedCallback, Layout, theme} from 'flipper-plugin'; import {showEmulatorLauncher} from './LaunchEmulator'; import {useStore} from '../../utils/useStore'; @@ -28,21 +28,29 @@ export function NoDevices() { ); return ( - - No devices found - - Start a fresh emulator {' '} - or check the{' '} - - troubleshooting guide - - . - - - } - /> + + No devices found + + Start a fresh emulator{' '} + or check the{' '} + + troubleshooting guide + + . + + + } + /> + }> + + + + ); }