From 59a4b997c704e11f1abd83b21e9794baaa416206 Mon Sep 17 00:00:00 2001 From: Kai Vandivier Date: Wed, 18 Dec 2024 14:36:10 -0800 Subject: [PATCH] chore: clean up returned value --- services/plugin/src/Plugin.tsx | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/services/plugin/src/Plugin.tsx b/services/plugin/src/Plugin.tsx index faedeedc..ed566224 100644 --- a/services/plugin/src/Plugin.tsx +++ b/services/plugin/src/Plugin.tsx @@ -143,20 +143,18 @@ export const Plugin = ({ ) } - if (pluginEntryPoint) { - return ( - - ) + if (!pluginEntryPoint) { + return <> } - return <> + return ( +