diff --git a/apps/web/components/App.tsx b/apps/web/components/App.tsx index 0ce1fbbe09..5704f2df57 100644 --- a/apps/web/components/App.tsx +++ b/apps/web/components/App.tsx @@ -119,31 +119,33 @@ const Component = ({
{!isLoading ? ( isGlobal || (installedAppCount > 0 && allowedMultipleInstalls) ? ( -
+
- { - if (useDefaultComponent) { - props = { - onClick: () => { - mutation.mutate({ type }); - }, - loading: mutation.isLoading, - }; - } - return ( - - ); - }} - /> + {!isGlobal && ( + { + if (useDefaultComponent) { + props = { + onClick: () => { + mutation.mutate({ type }); + }, + loading: mutation.isLoading, + }; + } + return ( + + ); + }} + /> + )}
) : (