diff --git a/packages/bruno-app/src/components/CollectionSettings/index.js b/packages/bruno-app/src/components/CollectionSettings/index.js index ef220351a..39377c459 100644 --- a/packages/bruno-app/src/components/CollectionSettings/index.js +++ b/packages/bruno-app/src/components/CollectionSettings/index.js @@ -43,6 +43,9 @@ const CollectionSettings = ({ collection }) => { const activeVarsCount = requestVars.filter((v) => v.enabled).length + responseVars.filter((v) => v.enabled).length; const authMode = get(collection, 'root.request.auth', {}).mode || 'none'; + const presets = get(collection, 'brunoConfig.presets', []); + const hasPresets = presets && presets.requestUrl !== ""; + const proxyConfig = get(collection, 'brunoConfig.proxy', {}); const clientCertConfig = get(collection, 'brunoConfig.clientCertificates.certs', []); @@ -159,6 +162,7 @@ const CollectionSettings = ({ collection }) => {