Skip to content

Commit

Permalink
Fix build of the TV demo
Browse files Browse the repository at this point in the history
  • Loading branch information
MGaetan89 committed Dec 5, 2024
1 parent 55788ec commit 2dac488
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ fun ListsHome(
val show = ContentList.LatestMediaForShow(
urn = content.urn,
show = content.title,
languageTag = contentList.languageTag,
)

navController.navigate(show)
Expand All @@ -154,7 +155,8 @@ fun ListsHome(
is Content.Topic -> {
val topic = ContentList.LatestMediaForTopic(
urn = content.urn,
topic = content.title
topic = content.title,
languageTag = contentList.languageTag,
)

navController.navigate(topic)
Expand Down

0 comments on commit 2dac488

Please sign in to comment.