chore: more cleanup

This commit is contained in:
Adrian Castro
2024-02-04 16:44:55 +01:00
parent 271cca3cd5
commit aa0e374bca
3 changed files with 1 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ export default function Item({
</View> </View>
<Text className="font-bold">{title}</Text> <Text className="font-bold">{title}</Text>
<View className="flex-row items-center gap-3"> <View className="flex-row items-center gap-3">
<Text className="text-xs text-gray-600">{type}</Text> <Text className="text-xs text-gray-600">{type === 'tv' ? 'Show' : 'Movie'}</Text>
<View className="h-1 w-1 rounded-3xl bg-gray-600" /> <View className="h-1 w-1 rounded-3xl bg-gray-600" />
<Text className="text-sm text-gray-600">{year}</Text> <Text className="text-sm text-gray-600">{year}</Text>
</View> </View>

View File

View File

@@ -1 +0,0 @@
export const TMDB_POSTER_PATH = `https://image.tmdb.org/t/p`;