- {
- !items.length ? (
-
-
{globalize.translate('MessageNothingHere')}
-
{globalize.translate('MessageNoGenresAvailable')}
-
- ) : items.map(item => (
-
-
-
- {enableScrollX() ?
-
:
- }
-
- ))
- }
-
- );
-};
-
-export default GenresItemsContainer;
diff --git a/src/components/common/RecommendationContainer.tsx b/src/components/common/RecommendationContainer.tsx
deleted file mode 100644
index 6c28272c9f..0000000000
--- a/src/components/common/RecommendationContainer.tsx
+++ /dev/null
@@ -1,48 +0,0 @@
-import type { RecommendationDto } from '@jellyfin/sdk/lib/generated-client';
-import React, { FC } from 'react';
-
-import globalize from '../../scripts/globalize';
-import escapeHTML from 'escape-html';
-import SectionContainer from './SectionContainer';
-
-interface RecommendationContainerProps {
- getPortraitShape: () => string;
- enableScrollX: () => boolean;
- recommendation?: RecommendationDto;
-}
-
-const RecommendationContainer: FC