diff --git a/apps/web/src/app/[locale]/page.tsx b/apps/web/src/app/[locale]/page.tsx
index 679ae2fb..09f61f5f 100644
--- a/apps/web/src/app/[locale]/page.tsx
+++ b/apps/web/src/app/[locale]/page.tsx
@@ -80,8 +80,22 @@ function AlertsAndApprovalsTab() {
{ap.action || ap.title || '--'}
{ap.resource || '--'}
-
-
+
+
))}
diff --git a/apps/web/src/components/panels/ApmPanel.tsx b/apps/web/src/components/panels/ApmPanel.tsx
index 4aa59d92..41c3e3cf 100644
--- a/apps/web/src/components/panels/ApmPanel.tsx
+++ b/apps/web/src/components/panels/ApmPanel.tsx
@@ -10,7 +10,7 @@ import { useTranslations } from 'next-intl'
import { TimeSeriesChart } from '@/components/charts/time-series-chart'
const API_BASE = process.env.NEXT_PUBLIC_API_URL ?? ''
-const SIGNOZ_URL = 'http://192.168.0.188:3301'
+const SIGNOZ_URL = process.env.NEXT_PUBLIC_SIGNOZ_URL ?? '/signoz'
interface GoldMetricItem {
label: string; value: number | string; unit: string | null; trend: number[]; status: string
diff --git a/apps/web/src/components/panels/ErrorsPanel.tsx b/apps/web/src/components/panels/ErrorsPanel.tsx
index 798eb46e..66a318ae 100644
--- a/apps/web/src/components/panels/ErrorsPanel.tsx
+++ b/apps/web/src/components/panels/ErrorsPanel.tsx
@@ -27,21 +27,21 @@ export function ErrorsPanel() {
}
return (
-
-
-
-
+
+
+
+
-
{t('title')}
-
{t('subtitle')}
+
{t('title')}
+
{t('subtitle')}
-
- {error &&
}
+ {error &&
}
@@ -52,7 +52,7 @@ export function ErrorsPanel() {
-
+
)
}