diff options
| author | AAGaming <aa@bigdumb.gq> | 2022-05-28 23:19:40 -0400 |
|---|---|---|
| committer | AAGaming <aa@bigdumb.gq> | 2022-05-28 23:19:40 -0400 |
| commit | 82320806496a456a67bd87a844e278c535269b75 (patch) | |
| tree | bcefa0e4b624189698e172824fb4bd13ba041a55 | |
| parent | 6e73b2796137984e5290a5d5f3e381362f21bfea (diff) | |
| download | decky-bazzite-buddy-82320806496a456a67bd87a844e278c535269b75.tar.gz decky-bazzite-buddy-82320806496a456a67bd87a844e278c535269b75.zip | |
fix oops
| -rw-r--r-- | src/index.tsx | 6 |
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 />, }; }); |
