diff --git a/packages/twenty-sdk/src/cli/commands/app-sync.command.ts b/packages/twenty-sdk/src/cli/commands/app-sync.command.ts index d2c96600a8..7e4618441c 100644 --- a/packages/twenty-sdk/src/cli/commands/app-sync.command.ts +++ b/packages/twenty-sdk/src/cli/commands/app-sync.command.ts @@ -60,11 +60,11 @@ export class AppSyncCommand { if (serverlessSyncResult.success === false) { console.error( - chalk.red('❌ Serverless functions Sync failed:'), + chalk.red('❌ Application Sync failed:'), serverlessSyncResult.error, ); } else { - console.log(chalk.green('✅ Serverless functions synced successfully')); + console.log(chalk.green('✅ Application synced successfully')); } return serverlessSyncResult;