Update index.js

Variable change from let to const
This commit is contained in:
Jose Bolivar Ibz
2025-07-22 12:10:14 -07:00
committed by GitHub
parent 325b573da9
commit bcf61f507a

View File

@@ -44,7 +44,7 @@ const CollectionSettings = ({ collection }) => {
const authMode = get(collection, 'root.request.auth', {}).mode || 'none';
const proxyConfig = get(collection, 'brunoConfig.proxy', {});
let proxyEnabled = proxyConfig.hostname ? true : false;
const proxyEnabled = proxyConfig.hostname ? true : false;
const clientCertConfig = get(collection, 'brunoConfig.clientCertificates.certs', []);