diff --git a/packages/bruno-app/src/components/CollectionSettings/index.js b/packages/bruno-app/src/components/CollectionSettings/index.js index cfae046b7..c0dfe3dd5 100644 --- a/packages/bruno-app/src/components/CollectionSettings/index.js +++ b/packages/bruno-app/src/components/CollectionSettings/index.js @@ -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', []);