🩹 Fixes
- ⚠️ Remove invalid options argument (#1048)
To upgrade, if you were passing a final options
argument, remove it. If you used the third argument to escape <
symbol... You'll need to do it yourself:
- i18n.t("someKey", ["sub1"], { escapeLt: true });
+ i18n.t("someKey", ["sub1"]).replaceAll("<", "<");
❤️ Contributors
- Aaron (@aklinker1)