diff --git a/packages/cli/commands/customObject/schema/create.js b/packages/cli/commands/customObject/schema/create.js index ac441e189..fecb6a95f 100644 --- a/packages/cli/commands/customObject/schema/create.js +++ b/packages/cli/commands/customObject/schema/create.js @@ -48,7 +48,7 @@ exports.handler = async options => { try { if (isConfigFlagEnabled(ConfigFlags.USE_CUSTOM_OBJECT_HUBFILE)) { await createSchemaFromHubFile(accountId, filePath); - logger.success(`Your schema has been created in acount "${accountId}"`); + logger.success(`Your schema has been created in account "${accountId}"`); } else { const res = await createSchema(accountId, filePath); logger.success( diff --git a/packages/cli/commands/customObject/schema/update.js b/packages/cli/commands/customObject/schema/update.js index 4d38bfe2b..13d822629 100644 --- a/packages/cli/commands/customObject/schema/update.js +++ b/packages/cli/commands/customObject/schema/update.js @@ -48,7 +48,7 @@ exports.handler = async options => { try { if (isConfigFlagEnabled(ConfigFlags.USE_CUSTOM_OBJECT_HUBFILE)) { await updateSchemaFromHubFile(accountId, filePath); - logger.success(`Your schema has been updated in acount "${accountId}"`); + logger.success(`Your schema has been updated in account "${accountId}"`); } else { const res = await updateSchema(accountId, name, filePath); logger.success(