From 59e0a54e3e5fb80a2c8b6ee6f0cbf2e6d0cf3438 Mon Sep 17 00:00:00 2001 From: Vojtech Novak Date: Fri, 27 Feb 2026 23:48:03 +0100 Subject: [PATCH] chore: update expo go warning message --- .../eas-cli/src/project/discourageExpoGoForProdAsync.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/packages/eas-cli/src/project/discourageExpoGoForProdAsync.ts b/packages/eas-cli/src/project/discourageExpoGoForProdAsync.ts index 64652956ad..65872ce909 100644 --- a/packages/eas-cli/src/project/discourageExpoGoForProdAsync.ts +++ b/packages/eas-cli/src/project/discourageExpoGoForProdAsync.ts @@ -26,13 +26,9 @@ export async function discourageExpoGoForProdAsync( } Log.newLine(); Log.warn( - `⚠️ Detected that your app uses Expo Go for development, this is not recommended when building production apps.` - ); - Log.warn( - learnMore('https://expo.fyi/why-not-build-expo-go-for-production', { - dim: false, - }) + `⚠️ Detected that this app uses Expo Go for development, which is not recommended when building production apps.` ); + Log.warn(learnMore('https://expo.fyi/why-not-build-expo-go-for-production', { dim: false })); Log.warn( chalk.dim(`To suppress this warning, set ${chalk.bold(`${suppressionEnvVarName}=true`)}.`) );