From 8ff61c422eeb0f5e9cccabe7e591a62a8acbc49c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Tue, 17 Mar 2026 18:15:47 +0100 Subject: [PATCH] nicolium: can't use i18n here MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- .../src/components/loading-screen.tsx | 26 +++++-------------- 1 file changed, 7 insertions(+), 19 deletions(-) diff --git a/packages/nicolium/src/components/loading-screen.tsx b/packages/nicolium/src/components/loading-screen.tsx index a8c91ef6e..403a462fd 100644 --- a/packages/nicolium/src/components/loading-screen.tsx +++ b/packages/nicolium/src/components/loading-screen.tsx @@ -1,26 +1,14 @@ import React from 'react'; -import { defineMessages, useIntl } from 'react-intl'; - -const messages = defineMessages({ - loading: { id: 'loading_indicator.label', defaultMessage: 'Loading…' }, -}); /** Fullscreen loading indicator. */ -const LoadingScreen: React.FC = () => { - const intl = useIntl(); - return ( -
-
-
-
-
+const LoadingScreen: React.FC = () => ( +
+
+
+
- ); -}; +
+); export { LoadingScreen as default };