diff --git a/libs/remix-ui/home-tab/src/lib/components/pluginButton.tsx b/libs/remix-ui/home-tab/src/lib/components/pluginButton.tsx
index e5a1ff3781..a6768ca0f2 100644
--- a/libs/remix-ui/home-tab/src/lib/components/pluginButton.tsx
+++ b/libs/remix-ui/home-tab/src/lib/components/pluginButton.tsx
@@ -30,13 +30,13 @@ function PluginButton({imgPath, envID, envText, callback, l2, description, remix
{l2 && }
- {remixMaintained ?
+ {remixMaintained ? (
}>
-
- : }>
-
-
+ )
+ : (}>
+
+ )
}
)
diff --git a/libs/remix-ui/panel/src/lib/plugins/panel-header.tsx b/libs/remix-ui/panel/src/lib/plugins/panel-header.tsx
index 44e1228ec7..6037ef5838 100644
--- a/libs/remix-ui/panel/src/lib/plugins/panel-header.tsx
+++ b/libs/remix-ui/panel/src/lib/plugins/panel-header.tsx
@@ -35,13 +35,13 @@ const RemixUIPanelHeader = (props: RemixPanelProps) => {
- {plugin?.profile?.maintainedBy?.toLowerCase() === 'remix' ?
+ {plugin?.profile?.maintainedBy?.toLowerCase() === 'remix' ? (
}>
-
- : }>
-
-
+ )
+ : (}>
+
+ )
}
diff --git a/libs/remix-ui/plugin-manager/src/lib/components/ActivePluginCard.tsx b/libs/remix-ui/plugin-manager/src/lib/components/ActivePluginCard.tsx
index a7264a255d..4b6caddff3 100644
--- a/libs/remix-ui/plugin-manager/src/lib/components/ActivePluginCard.tsx
+++ b/libs/remix-ui/plugin-manager/src/lib/components/ActivePluginCard.tsx
@@ -17,7 +17,7 @@ function ActivePluginCard({profile, buttonText, deactivatePlugin}: PluginCardPro
{profile.displayName || profile.name}
- {profile?.maintainedBy?.toLowerCase() == 'remix' ?
+ {profile?.maintainedBy?.toLowerCase() == 'remix' ? (
}
>
-
- :
)
+ : (}
>
- }
+ )
+ }
{profile.documentation && (
{profile.displayName || profile.name}
- {profile?.maintainedBy?.toLowerCase() == 'remix' ?
+ {profile?.maintainedBy?.toLowerCase() == 'remix' ? (
}
>
-
- : )
+ : (}
>
-
- }
+
+ )
+ }
{profile.documentation && (