From 98ba6728f857ecc988633e264139ea46c4e7fc5c Mon Sep 17 00:00:00 2001 From: Ryan Miller Date: Mon, 19 Aug 2024 15:38:19 +1000 Subject: [PATCH] fix: remove unused type --- ts/util/i18n.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/util/i18n.ts b/ts/util/i18n.ts index 1be483037..ed556aba2 100644 --- a/ts/util/i18n.ts +++ b/ts/util/i18n.ts @@ -212,7 +212,7 @@ export const setupi18n = (locale: Locale, dictionary: LocalizerDictionary) => { } if (isPluralForm(localizedString)) { - const pluralKey = getPluralKey(localizedString) as keyof typeof args; + const pluralKey = getPluralKey(localizedString); if (!pluralKey) { i18nLog(