Revert "refactor: remove unused name field from LibraryDto"

This reverts commit 8a1d5ccfab.
This commit is contained in:
2026-04-29 18:09:13 +02:00
parent 3d01f0faf3
commit 22c414b5e2
3 changed files with 5 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ fun TvAppScreen(
)
) + libraries.map { library ->
val destination = Route.LibraryRoute(
library = LibraryDto(id = library.id)
library = LibraryDto(id = library.id, name = library.name)
)
TvDrawerDestinationItem(
destination = destination,