Skip to content

Commit

Permalink
fix false target
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius456 committed Dec 4, 2024
1 parent 7119d22 commit 5b16083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk-kaios/src/deviceManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const launchKaiOSSimulator = async (target: string | boolean) => {
(directory) => directory.toLowerCase().indexOf('kaios') !== -1
);

if (target === true) {
if (typeof target === 'boolean') {
const { selectedSimulator } = await inquirerPrompt({
name: 'selectedSimulator',
type: 'list',
Expand Down

0 comments on commit 5b16083

Please sign in to comment.