From 4024c08ddad6b156993897e86f243a88a7ffac64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Dudfield?= Date: Sun, 5 May 2024 16:25:39 +0200 Subject: [PATCH] frontend: i18n: Remove module override of @mui/styles/defaultTheme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's not used anymore. Signed-off-by: René Dudfield --- frontend/src/i18n/ThemeProviderNexti18n.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frontend/src/i18n/ThemeProviderNexti18n.tsx b/frontend/src/i18n/ThemeProviderNexti18n.tsx index f00f2783b6c..7b5590fc935 100644 --- a/frontend/src/i18n/ThemeProviderNexti18n.tsx +++ b/frontend/src/i18n/ThemeProviderNexti18n.tsx @@ -4,11 +4,6 @@ import React, { useEffect, useState } from 'react'; import { useTranslation } from 'react-i18next'; import { Loader } from '../components/common'; -declare module '@mui/styles/defaultTheme' { - // eslint-disable-next-line @typescript-eslint/no-empty-interface - interface DefaultTheme extends Theme {} -} - function getLocale(locale: string): typeof enUS { const LOCALES = { en: enUS,