From 325b573da927d2b8f6185b435a34b8c1db1358f0 Mon Sep 17 00:00:00 2001 From: Jose Bolivar Ibz <79944431+josbiz@users.noreply.github.com> Date: Tue, 22 Jul 2025 11:51:02 -0700 Subject: [PATCH] fix: dot on unused proxy settings --- packages/bruno-app/src/components/CollectionSettings/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/bruno-app/src/components/CollectionSettings/index.js b/packages/bruno-app/src/components/CollectionSettings/index.js index ef220351a..cfae046b7 100644 --- a/packages/bruno-app/src/components/CollectionSettings/index.js +++ b/packages/bruno-app/src/components/CollectionSettings/index.js @@ -44,6 +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 clientCertConfig = get(collection, 'brunoConfig.clientCertificates.certs', []); @@ -162,7 +163,7 @@ const CollectionSettings = ({ collection }) => {