diff --git a/desktop/app/src/utils/iOSContainerUtility.tsx b/desktop/app/src/utils/iOSContainerUtility.tsx index 65ae3a44f..cbb1cb742 100644 --- a/desktop/app/src/utils/iOSContainerUtility.tsx +++ b/desktop/app/src/utils/iOSContainerUtility.tsx @@ -64,6 +64,7 @@ async function targets(idbPath: string): Promise> { return safeExec(`${idbPath} list-targets --json`).then(({stdout}) => stdout .toString() + .trim() .split('\n') .map((line) => line.trim()) .map((line) => JSON.parse(line))