diff --git a/frontend/src/components/PluginView.tsx b/frontend/src/components/PluginView.tsx
index b3640395..65288c05 100644
--- a/frontend/src/components/PluginView.tsx
+++ b/frontend/src/components/PluginView.tsx
@@ -9,7 +9,7 @@ const PluginView: VFC = () => {
if (activePlugin) {
return (
-
+
diff --git a/frontend/src/components/TitleView.tsx b/frontend/src/components/TitleView.tsx
index 4b4a6825..a9e1017a 100644
--- a/frontend/src/components/TitleView.tsx
+++ b/frontend/src/components/TitleView.tsx
@@ -1,13 +1,23 @@
-import { staticClasses } from 'decky-frontend-lib';
+import { staticClasses, DialogButton } from 'decky-frontend-lib';
import { VFC } from 'react';
+import { FaShoppingBag } from "react-icons/fa";
import { useDeckyState } from './DeckyState';
const TitleView: VFC = () => {
const { activePlugin } = useDeckyState();
+ const openPluginStore = () => fetch("http://127.0.0.1:1337/methods/open_plugin_store", {method: "POST"});
+
if (activePlugin === null) {
- return Decky
;
+ return ;
}
return (