diff --git a/public/app/features/alerting/unified/api/incidentsApi.ts b/public/app/features/alerting/unified/api/incidentsApi.ts index 23901a47d62..3a449ca3fdb 100644 --- a/public/app/features/alerting/unified/api/incidentsApi.ts +++ b/public/app/features/alerting/unified/api/incidentsApi.ts @@ -12,9 +12,9 @@ const getProxyApiUrl = (path: string) => `/api/plugins/${SupportedPlugin.Inciden export const incidentsApi = alertingApi.injectEndpoints({ endpoints: (build) => ({ getIncidentsPluginConfig: build.query({ - query: (integration) => ({ + query: () => ({ url: getProxyApiUrl('/api/ConfigurationTrackerService.GetConfigurationTracker'), - data: integration, + data: {}, method: 'POST', showErrorAlert: false, }),