diff --git a/desktop/app/src/dispatcher/iOSDevice.tsx b/desktop/app/src/dispatcher/iOSDevice.tsx index fcd8ac917..587afd188 100644 --- a/desktop/app/src/dispatcher/iOSDevice.tsx +++ b/desktop/app/src/dispatcher/iOSDevice.tsx @@ -188,12 +188,13 @@ export function getSimulators( }); } -export function launchSimulator(udid: string): Promise { - return promisify(execFile)( +export async function launchSimulator(udid: string): Promise { + await promisify(execFile)( 'xcrun', ['simctl', ...getDeviceSetPath(), 'boot', udid], {encoding: 'utf8'}, ); + await promisify(execFile)('open', ['-a', 'simulator']); } function getActiveDevices(idbPath: string): Promise> { diff --git a/desktop/app/src/sandy-chrome/appinspect/PluginList.tsx b/desktop/app/src/sandy-chrome/appinspect/PluginList.tsx index 9088a0c7a..f94482721 100644 --- a/desktop/app/src/sandy-chrome/appinspect/PluginList.tsx +++ b/desktop/app/src/sandy-chrome/appinspect/PluginList.tsx @@ -164,7 +164,7 @@ export const PluginList = memo(function PluginList({ + hint="This section shows the plugins that are currently disabled. If a plugin is enabled, you will be able to interact with it. If a plugin is disabled it won't consume resources in Flipper or in the connected application."> {disabledPlugins.map((plugin) => (