From 22e1b9c28059fbed60f04d58ea6ec278fe933f30 Mon Sep 17 00:00:00 2001 From: Walter Rafelsberger Date: Thu, 26 Aug 2021 08:27:09 +0200 Subject: [PATCH] [ML] Fix typo. --- .../app/correlations/failed_transactions_correlations.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/apm/public/components/app/correlations/failed_transactions_correlations.tsx b/x-pack/plugins/apm/public/components/app/correlations/failed_transactions_correlations.tsx index 08412ec5d6a0a..69797837202b9 100644 --- a/x-pack/plugins/apm/public/components/app/correlations/failed_transactions_correlations.tsx +++ b/x-pack/plugins/apm/public/components/app/correlations/failed_transactions_correlations.tsx @@ -70,7 +70,7 @@ export function FailedTransactionsCorrelations({ const inspectEnabled = uiSettings.get(enableInspectEsQueries); - const searchServicePrams: SearchServiceParams = { + const searchServiceParams: SearchServiceParams = { environment, kuery, serviceName, @@ -93,7 +93,7 @@ export function FailedTransactionsCorrelations({ } = result; const startFetchHandler = useCallback(() => { - startFetch(searchServicePrams); + startFetch(searchServiceParams); // eslint-disable-next-line react-hooks/exhaustive-deps }, [environment, serviceName, transactionType, kuery, start, end]);