diff --git a/src/impl/locale.js b/src/impl/locale.js index fe7dd57d..385265ce 100644 --- a/src/impl/locale.js +++ b/src/impl/locale.js @@ -138,9 +138,7 @@ function mapWeekdays(f) { function listStuff(loc, length, englishFn, intlFn) { const mode = loc.listingMode(); - if (mode === "error") { - return null; - } else if (mode === "en") { + if (mode === "en") { return englishFn(length); } else { return intlFn(length);