diff --git a/web/app/components/plugins/marketplace/list/flat-list.tsx b/web/app/components/plugins/marketplace/list/flat-list.tsx
index e94faf4f1d..3145388205 100644
--- a/web/app/components/plugins/marketplace/list/flat-list.tsx
+++ b/web/app/components/plugins/marketplace/list/flat-list.tsx
@@ -2,6 +2,7 @@
import type { Template } from '../types'
import type { Plugin } from '@/app/components/plugins/types'
+import { useTranslation } from '#i18n'
import Empty from '../empty'
import CardWrapper from './card-wrapper'
import { GRID_CLASS } from './collection-constants'
@@ -21,11 +22,17 @@ type TemplatesVariant = {
type FlatListProps = PluginsVariant | TemplatesVariant
const FlatList = (props: FlatListProps) => {
- if (!props.items.length)
- return