diff --git a/web/app/components/plugins/plugin-page/plugins-panel.tsx b/web/app/components/plugins/plugin-page/plugins-panel.tsx
index df41153f52..ef4911e523 100644
--- a/web/app/components/plugins/plugin-page/plugins-panel.tsx
+++ b/web/app/components/plugins/plugin-page/plugins-panel.tsx
@@ -70,20 +70,24 @@ const PluginsPanel = () => {
/>
{isPluginListLoading && }
- {!isPluginListLoading && (filteredList?.length ?? 0) > 0 ? (
-
-
-
-
- {!isLastPage && !isFetching && (
-
+ {!isPluginListLoading && (
+ <>
+ {(filteredList?.length ?? 0) > 0 ? (
+
+
+
+
+ {!isLastPage && !isFetching && (
+
+ )}
+ {isFetching &&
{t('appLog.detail.loading')}
}
+
+ ) : (
+
)}
- {isFetching &&
{t('appLog.detail.loading')}
}
-
- ) : (
-
+ >
)}