diff --git a/frontend/src/i18n.ts b/frontend/src/i18n.ts index 2ccfa2b8d..8eed25a42 100644 --- a/frontend/src/i18n.ts +++ b/frontend/src/i18n.ts @@ -1,6 +1,6 @@ import { initReactI18next } from "react-i18next"; import i18n from "i18next"; -import LanguageDetector from "i18next-browser-languagedetector"; +// import LanguageDetector from "i18next-browser-languagedetector"; import Backend from "i18next-http-backend"; // don't want to use this? // have a look at the Quick start guide @@ -13,17 +13,18 @@ i18n .use(Backend) // detect user language // learn more: https://github.com/i18next/i18next-browser-languageDetector - .use(LanguageDetector) + // .use(LanguageDetector) // pass the i18n instance to react-i18next. .use(initReactI18next) // init i18next // for all options read: https://www.i18next.com/overview/configuration-options .init({ + lng:"en", fallbackLng: "en", - supportedLngs: ["en", "ko", "fr", "pt-BR", "pt-PT", "es"], + // supportedLngs: ["en", "ko", "fr", "pt-BR", "pt-PT", "es"], debug: process.env.NODE_ENV === "development", detection: { - lookupLocalStorage: "lang" + // lookupLocalStorage: "lang" }, ns: ["translations"], interpolation: { diff --git a/frontend/src/views/SecretMainPage/SecretMainPage.tsx b/frontend/src/views/SecretMainPage/SecretMainPage.tsx index f538a4c0a..b0e34d507 100644 --- a/frontend/src/views/SecretMainPage/SecretMainPage.tsx +++ b/frontend/src/views/SecretMainPage/SecretMainPage.tsx @@ -27,6 +27,7 @@ import { useGetWsTags } from "@app/hooks/api"; +import { ProjectIndexSecretsSection } from "../SecretOverviewPage/components/ProjectIndexSecretsSection"; import { ActionBar } from "./components/ActionBar"; import { CreateSecretForm } from "./components/CreateSecretForm"; import { FolderListView } from "./components/FolderListView"; @@ -219,6 +220,7 @@ export const SecretMainPage = () => { protectionPolicyName={boardPolicy?.name} /> + {!isRollbackMode ? ( <> { return (
-
); -} \ No newline at end of file +}