From 8f42f9d9c314becfaacc35ed71c65ae4775e950f Mon Sep 17 00:00:00 2001 From: Jordan Ramos Date: Fri, 22 May 2026 12:59:58 -0600 Subject: [PATCH] Remove unused API_HOST variable to fix ESLint warning count --- frontend/src/App.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/App.js b/frontend/src/App.js index c562c90..3f84632 100644 --- a/frontend/src/App.js +++ b/frontend/src/App.js @@ -165,7 +165,6 @@ const getSeverityDotColor = (severity) => { default: return '#0EA5E9'; } }; -const API_HOST = process.env.REACT_APP_API_HOST || 'http://localhost:3001'; const severityLevels = ['All Severities', 'Critical', 'High', 'Medium', 'Low'];