From 687f7bf5dbdc3e2c533edea4fe40d48ef1007a13 Mon Sep 17 00:00:00 2001 From: Marco Rodolfi Date: Sat, 27 May 2023 19:23:15 +0200 Subject: Simplified the translation error. --- frontend/src/plugin-loader.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'frontend/src/plugin-loader.tsx') diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx index 7a226920..a14d3d4d 100644 --- a/frontend/src/plugin-loader.tsx +++ b/frontend/src/plugin-loader.tsx @@ -10,10 +10,8 @@ import { sleep, staticClasses, } from 'decky-frontend-lib'; -import { CSSProperties, FC, lazy } from 'react'; -import { Trans } from 'react-i18next'; -import { BsGearFill } from 'react-icons/bs'; -import { FaArrowRight, FaExclamationCircle, FaPlug } from 'react-icons/fa'; +import { FC, lazy } from 'react'; +import { FaExclamationCircle, FaPlug } from 'react-icons/fa'; import { DeckyState, DeckyStateContextProvider, useDeckyState } from './components/DeckyState'; import LegacyPlugin from './components/LegacyPlugin'; @@ -276,7 +274,6 @@ class PluginLoader extends Logger { }); } catch (e) { this.error('Error loading plugin ' + name, e); - const style: CSSProperties = { verticalAlign: 'middle' }; const TheError: FC<{}> = () => ( @@ -291,10 +288,10 @@ class PluginLoader extends Logger {
- , , ]} +
-- cgit v1.2.3