summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAAGaming <aa@bigdumb.gq>2022-05-28 23:19:40 -0400
committerAAGaming <aa@bigdumb.gq>2022-05-28 23:19:40 -0400
commit82320806496a456a67bd87a844e278c535269b75 (patch)
treebcefa0e4b624189698e172824fb4bd13ba041a55
parent6e73b2796137984e5290a5d5f3e381362f21bfea (diff)
downloaddecky-bazzite-buddy-82320806496a456a67bd87a844e278c535269b75.tar.gz
decky-bazzite-buddy-82320806496a456a67bd87a844e278c535269b75.zip
fix oops
-rw-r--r--src/index.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 2c40a21..8fd3a48 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -66,8 +66,8 @@ const Content: VFC<{ serverAPI: ServerAPI }> = ({}) => {
export default definePlugin((serverApi: ServerAPI) => {
return {
- title: () => <div className={staticClasses.Title}>Example Plugin</div>,
- content: () => <Content serverAPI={serverApi} />,
- icon: () => <FaShip />,
+ title: <div className={staticClasses.Title}>Example Plugin</div>,
+ content: <Content serverAPI={serverApi} />,
+ icon: <FaShip />,
};
});