From 7cc8e3732c30e66609429ef80132662d2a2db70f Mon Sep 17 00:00:00 2001 From: Lorenzo Blasa Date: Fri, 3 Feb 2023 04:01:23 -0800 Subject: [PATCH] Advertise UI Debugger for iOS Summary: ^ If the connected device was not an Android device, we were not showing the notification. This change removes that check to also advertise on iOS. Reviewed By: mweststrate Differential Revision: D42989975 fbshipit-source-id: eac8d588be789dcab281a746395a4fb7a88df790 --- desktop/plugins/public/layout/index.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/desktop/plugins/public/layout/index.tsx b/desktop/plugins/public/layout/index.tsx index a27c068bf..d6d550e56 100644 --- a/desktop/plugins/public/layout/index.tsx +++ b/desktop/plugins/public/layout/index.tsx @@ -330,10 +330,7 @@ export default class LayoutPlugin extends FlipperPlugin< }; onSuggestUIDebugger = () => { - if ( - !getFlipperLib().GK('flipper_ui_debugger') || - this.device.os !== 'Android' - ) { + if (!getFlipperLib().GK('flipper_ui_debugger')) { return; }