From ff7179a448d657ed3c7d85ca386d843dec89164d Mon Sep 17 00:00:00 2001 From: Kevin Delemme Date: Wed, 12 Apr 2023 14:11:06 -0400 Subject: [PATCH] fix typo --- .../app/burn_rate_rule_editor/burn_rate_rule_editor.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/observability/public/components/app/burn_rate_rule_editor/burn_rate_rule_editor.tsx b/x-pack/plugins/observability/public/components/app/burn_rate_rule_editor/burn_rate_rule_editor.tsx index 62549da3b0bf6..5955ade0b60fd 100644 --- a/x-pack/plugins/observability/public/components/app/burn_rate_rule_editor/burn_rate_rule_editor.tsx +++ b/x-pack/plugins/observability/public/components/app/burn_rate_rule_editor/burn_rate_rule_editor.tsx @@ -127,10 +127,10 @@ export function BurnRateRuleEditor(props: Props) { ); } -const getErrorBudgetExhaustionText = (formatedHours: string) => +const getErrorBudgetExhaustionText = (formattedHours: string) => i18n.translate('xpack.observability.slo.rules.errorBudgetExhaustion.text', { defaultMessage: '{formatedHours} hours until error budget exhaustion.', values: { - formatedHours, + formatedHours: formattedHours, }, });