Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kdelemme committed Apr 12, 2023
1 parent 1d19930 commit ff7179a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
});

0 comments on commit ff7179a

Please sign in to comment.