From 3c6f4acef48619f5b49cd1c7614878277f7c70ec Mon Sep 17 00:00:00 2001 From: Creation's Date: Mon, 21 Oct 2024 12:27:11 -0400 Subject: [PATCH] Update PinIcon position (#70) * update pinIcon Position * return to oneline --- src/equicordplugins/pinIcon/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/equicordplugins/pinIcon/index.tsx b/src/equicordplugins/pinIcon/index.tsx index be1066d6..d9e58067 100644 --- a/src/equicordplugins/pinIcon/index.tsx +++ b/src/equicordplugins/pinIcon/index.tsx @@ -35,6 +35,6 @@ export default definePlugin({ } ], PinnedIcon({ pinned }: Message) { - return pinned ? : null; + return pinned ? () : null; } });