diff --git a/src/otomi-stack.ts b/src/otomi-stack.ts index 769e42ab9..5f641f0b8 100644 --- a/src/otomi-stack.ts +++ b/src/otomi-stack.ts @@ -655,20 +655,6 @@ export default class OtomiStack { async createTeam(data: Team, deploy = true): Promise { const teamName = data.name - - if (isEmpty(data.password)) { - debug(`creating password for team '${data.name}'`) - // eslint-disable-next-line no-param-reassign - data.password = generatePassword({ - length: 16, - numbers: true, - symbols: '!@#$%&*', - lowercase: true, - uppercase: true, - strict: true, - }) - } - const teamConfig = this.repoService.createTeamConfig(data) const team = teamConfig.settings const apps = getAppList()