1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00

fix: allow user to create up to 7 environments (#543)

This commit is contained in:
Ivar Conradi Østhus 2021-12-01 21:34:07 +01:00 committed by GitHub
parent 4d82c95ce0
commit abd158d129

View File

@ -39,7 +39,7 @@ const CreateEnvironment = () => {
const goBack = () => history.goBack();
const canCreateMoreEnvs = environments.length < 5;
const canCreateMoreEnvs = environments.length < 7;
const validateEnvironmentName = async () => {
if (envName.length === 0) {