From 83659e5da8b9a1e9da540d982b041052757239d5 Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 25 Jan 2025 08:15:10 +0100 Subject: [PATCH] remove loading messages --- interface/src/components/loading/LoadingSpinner.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/interface/src/components/loading/LoadingSpinner.tsx b/interface/src/components/loading/LoadingSpinner.tsx index b21cf1b50..8b61b056c 100644 --- a/interface/src/components/loading/LoadingSpinner.tsx +++ b/interface/src/components/loading/LoadingSpinner.tsx @@ -1,15 +1,11 @@ -import { Box, CircularProgress, Typography } from '@mui/material'; +import { Box, CircularProgress } from '@mui/material'; import type { Theme } from '@mui/material'; -import { useI18nContext } from 'i18n/i18n-react'; - interface LoadingSpinnerProps { height?: number | string; } const LoadingSpinner = ({ height = '100%' }: LoadingSpinnerProps) => { - const { LL } = useI18nContext(); - return (