add missing break in switch

This commit is contained in:
William Welling
2021-12-22 10:50:06 -06:00
parent 3476fe3f0f
commit c43fdb9754

View File

@@ -124,6 +124,7 @@ const overrideWithEnvironment = (config: Config, key: string = '') => {
break; break;
case 'string': case 'string':
config[property] = value; config[property] = value;
break;
default: default:
console.warn(`Unsupported environment variable type ${typeof innerConfig} ${DSPACE(variable)}`); console.warn(`Unsupported environment variable type ${typeof innerConfig} ${DSPACE(variable)}`);
} }