From 82320806496a456a67bd87a844e278c535269b75 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sat, 28 May 2022 23:19:40 -0400 Subject: [PATCH] fix oops --- src/index.tsx | 6 +++--- 1 file 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: () =>
Example Plugin
, - content: () => , - icon: () => , + title:
Example Plugin
, + content: , + icon: , }; });