From a0c54feee547aed604fc62e4b1ff0cf244d5061e Mon Sep 17 00:00:00 2001 From: Deep Koluguri Date: Mon, 22 Jun 2026 21:54:17 -0400 Subject: [PATCH] fix: import getApiUrl in AlertsFeed to fix reference error --- frontend/src/components/dashboard/AlertsFeed.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/dashboard/AlertsFeed.jsx b/frontend/src/components/dashboard/AlertsFeed.jsx index a49a443..02b9d96 100644 --- a/frontend/src/components/dashboard/AlertsFeed.jsx +++ b/frontend/src/components/dashboard/AlertsFeed.jsx @@ -3,6 +3,7 @@ import { Badge } from '@/components/ui/Badge'; import { Input } from '@/components/ui/input'; import { Bell, TrendingUp, TrendingDown, AlertTriangle, Calendar, Clock } from 'lucide-react'; import { requestNotificationPermission, sendNotification } from '@/utils/notifications'; +import { getApiUrl } from '@/config/api'; export default function AlertsFeed() { const [alerts, setAlerts] = useState([]);