diff --git a/src/screens/LibraryScreen.tsx b/src/screens/LibraryScreen.tsx
index eaf75d3c..83d11fd7 100644
--- a/src/screens/LibraryScreen.tsx
+++ b/src/screens/LibraryScreen.tsx
@@ -385,49 +385,47 @@ const LibraryScreen = () => {
return folders.filter(folder => folder.itemCount > 0);
}, [traktAuthenticated, watchedMovies, watchedShows, watchlistMovies, watchlistShows, collectionMovies, collectionShows, continueWatching, ratedContent]);
- const renderItem = ({ item }: { item: LibraryItem }) => {
- const aspectRatio = item.posterShape === 'landscape' ? 16 / 9 : (item.posterShape === 'square' ? 1 : 2 / 3);
-
- return (
- navigation.navigate('Metadata', { id: item.id, type: item.type })}
- onLongPress={() => {
- setSelectedItem(item);
- setMenuVisible(true);
- }}
- activeOpacity={0.7}
- >
-
-
-
- {item.watched && (
-
-
-
- )}
- {item.progress !== undefined && item.progress < 1 && (
-
-
-
- )}
-
+ const renderItem = ({ item }: { item: LibraryItem }) => (
+ navigation.navigate('Metadata', { id: item.id, type: item.type })}
+ onLongPress={() => {
+ setSelectedItem(item);
+ setMenuVisible(true);
+ }}
+ activeOpacity={0.7}
+ >
+
+
+
+ {item.watched && (
+
+
+
+ )}
+ {item.progress !== undefined && item.progress < 1 && (
+
+
+
+ )}
+
+ {settings.showPosterTitles && (
{item.name}
-
-
- );
- };
+ )}
+
+
+ );
const renderTraktCollectionFolder = ({ folder }: { folder: TraktFolder }) => (