Skip to content

Commit

Permalink
Fix wrong Condition (#607)
Browse files Browse the repository at this point in the history
This PR fixes a mistake in condition checking if android and ios
directories are optional.
  • Loading branch information
filip131311 authored Oct 11, 2024
1 parent 0c21812 commit 048b7f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -352,5 +352,5 @@ async function areNativeDirectoriesOptional(): Promise<boolean> {
const isExpoGo = await isExpoGoProject();
const launchConfiguration = getLaunchConfiguration();

return isExpoGo && !!launchConfiguration.eas && !!launchConfiguration.customBuild;
return isExpoGo || !!launchConfiguration.eas || !!launchConfiguration.customBuild;
}

0 comments on commit 048b7f1

Please sign in to comment.