diff options
| author | Beebles <102569435+beebls@users.noreply.github.com> | 2024-08-31 16:41:58 -0600 |
|---|---|---|
| committer | Beebles <102569435+beebls@users.noreply.github.com> | 2024-09-13 17:22:14 -0600 |
| commit | 985dc669a11c3b4f053d60737181879b5ac811d8 (patch) | |
| tree | ffc512b723de406e25a96572192e3027408ddb98 /frontend/src/components/PluginView.tsx | |
| parent | 3193f71c20c5c40c2742547ec291ad06cc12e27f (diff) | |
| download | decky-loader-985dc669a11c3b4f053d60737181879b5ac811d8.tar.gz decky-loader-985dc669a11c3b4f053d60737181879b5ac811d8.zip | |
rename motd to announcements and implement new API
Diffstat (limited to 'frontend/src/components/PluginView.tsx')
| -rw-r--r-- | frontend/src/components/PluginView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/PluginView.tsx b/frontend/src/components/PluginView.tsx index 0ee24961..88fe84f3 100644 --- a/frontend/src/components/PluginView.tsx +++ b/frontend/src/components/PluginView.tsx @@ -4,8 +4,8 @@ import { useTranslation } from 'react-i18next'; import { FaEyeSlash } from 'react-icons/fa'; import { Plugin } from '../plugin'; +import { AnnouncementsDisplay } from './AnnouncementsDisplay'; import { useDeckyState } from './DeckyState'; -import { MotdDisplay } from './MotdDisplay'; import NotificationBadge from './NotificationBadge'; import { useQuickAccessVisible } from './QuickAccessVisibleState'; import TitleView from './TitleView'; @@ -43,7 +43,7 @@ const PluginView: FC = () => { paddingTop: '16px', }} > - <MotdDisplay /> + <AnnouncementsDisplay /> <PanelSection> {pluginList .filter((p) => p.content) |
