summaryrefslogtreecommitdiff
path: root/frontend/src/components/PluginView.tsx
diff options
context:
space:
mode:
authorAAGaming <aagaming@riseup.net>2024-05-27 17:21:27 -0400
committerAAGaming <aagaming@riseup.net>2024-05-27 17:21:27 -0400
commit9c8db576f5cea498c70d00a0764d7f3c6c9cef65 (patch)
tree72436ef52123e6343cdcc21b66efd59b51c4de23 /frontend/src/components/PluginView.tsx
parenta84a13c76d99f1e6f4505d43108a4111749e5035 (diff)
downloaddecky-loader-9c8db576f5cea498c70d00a0764d7f3c6c9cef65.tar.gz
decky-loader-9c8db576f5cea498c70d00a0764d7f3c6c9cef65.zip
error boundary now properly reports steam errors
Diffstat (limited to 'frontend/src/components/PluginView.tsx')
-rw-r--r--frontend/src/components/PluginView.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/PluginView.tsx b/frontend/src/components/PluginView.tsx
index ce20ac4a..997e576b 100644
--- a/frontend/src/components/PluginView.tsx
+++ b/frontend/src/components/PluginView.tsx
@@ -1,5 +1,5 @@
import { ButtonItem, Focusable, PanelSection, PanelSectionRow } from '@decky/ui';
-import { VFC, useEffect, useState } from 'react';
+import { FC, useEffect, useState } from 'react';
import { useTranslation } from 'react-i18next';
import { FaEyeSlash } from 'react-icons/fa';
@@ -9,7 +9,7 @@ import NotificationBadge from './NotificationBadge';
import { useQuickAccessVisible } from './QuickAccessVisibleState';
import TitleView from './TitleView';
-const PluginView: VFC = () => {
+const PluginView: FC = () => {
const { hiddenPlugins } = useDeckyState();
const { plugins, updates, activePlugin, pluginOrder, setActivePlugin, closeActivePlugin } = useDeckyState();
const visible = useQuickAccessVisible();