correct HTTPS_ENABLED cast

This commit is contained in:
Maidul Islam
2023-04-13 15:24:26 -07:00
parent 806448a7f9
commit 5c15fab46e

View File

@@ -60,5 +60,5 @@ export const getHttpsEnabled = () => {
return true
}
return Boolean(infisical.get('HTTPS_ENABLED'))
return infisical.get('HTTPS_ENABLED') === 'true' && true
}