FarmBot/Farmbot-Web-App

View on GitHub
frontend/revert_to_english.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { detectLanguage } from "./i18n";
import { init } from "i18next";
import { noop } from "lodash";

export async function revertToEnglish() {
  init(await detectLanguage("en"), noop);
}