Skip to content

Commit 8515c97

Browse files
committed
fix: remove unused eslint-disable
1 parent 7a23510 commit 8515c97

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/use-i18n/src/usei18n.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,16 +209,12 @@ const I18nContextProvider = ({
209209
)
210210

211211
const formatNumber = useCallback(
212-
// intl-format-chache does not forwrad return types
213-
// eslint-disable-next-line
214212
(numb: number, options?: Intl.NumberFormatOptions) => formatters.getNumberFormat(currentLocale, options).format(numb),
215213
[currentLocale],
216214
)
217215

218216
const formatList = useCallback(
219217
(listFormat: [string | undefined], options?: Intl.ListFormatOptions) =>
220-
// intl-format-chache does not forwrad return types
221-
// eslint-disable-next-line
222218
formatters.getListFormat(currentLocale, options).format(listFormat),
223219
[currentLocale],
224220
)

0 commit comments

Comments
 (0)