diff --git a/desktop/app/src/sandy-chrome/appinspect/LaunchEmulator.tsx b/desktop/app/src/sandy-chrome/appinspect/LaunchEmulator.tsx
index 56b54ee5b..dde7d8e4c 100644
--- a/desktop/app/src/sandy-chrome/appinspect/LaunchEmulator.tsx
+++ b/desktop/app/src/sandy-chrome/appinspect/LaunchEmulator.tsx
@@ -76,7 +76,9 @@ export const LaunchEmulatorDialog = withTrackingScope(
}, [iosEnabled, getSimulators, store]);
const items = [
- ...(androidEmulators.length > 0 ? [] : []),
+ ...(androidEmulators.length > 0
+ ? []
+ : []),
...androidEmulators.map((name) => {
const launch = (coldBoot: boolean) => {
launchEmulator(name, coldBoot)
@@ -111,7 +113,7 @@ export const LaunchEmulatorDialog = withTrackingScope(
);
}),
- ...(iosEmulators.length > 0 ? [] : []),
+ ...(iosEmulators.length > 0 ? [] : []),
...iosEmulators.map((device) => (