From bcf61f507a8faf55d4fe3556c800bdb5102fba32 Mon Sep 17 00:00:00 2001 From: Jose Bolivar Ibz <79944431+josbiz@users.noreply.github.com> Date: Tue, 22 Jul 2025 12:10:14 -0700 Subject: [PATCH] Update index.js Variable change from let to const --- packages/bruno-app/src/components/CollectionSettings/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', []);