refactor: rename imageUrl to primaryImageUrl for consistency across components

This commit is contained in:
2026-04-19 20:08:41 +02:00
parent 52a51b1b28
commit a0086c6f62
7 changed files with 14 additions and 14 deletions

View File

@@ -63,7 +63,7 @@ internal fun ContinueWatchingCard(
.background(scheme.surfaceContainer)
) {
PurefinAsyncImage(
model = item.imageUrl,
model = item.primaryImageUrl,
contentDescription = item.primaryText,
modifier = Modifier.fillMaxSize(),
contentScale = ContentScale.Crop

View File

@@ -66,7 +66,7 @@ internal fun HomeBrowseCard(
.background(scheme.surface)
) {
PurefinAsyncImage(
model = uiModel.imageUrl,
model = uiModel.primaryImageUrl,
contentDescription = uiModel.primaryText,
modifier = Modifier.fillMaxSize(),
contentScale = ContentScale.Crop

View File

@@ -58,7 +58,7 @@ internal fun NextUpCard(
.background(scheme.surface)
) {
PurefinAsyncImage(
model = uiModel.imageUrl,
model = uiModel.primaryImageUrl,
contentDescription = uiModel.primaryText,
modifier = Modifier.fillMaxSize(),
contentScale = ContentScale.Crop