diff --git a/src/main/kotlin/com/theapache64/stackzy/ui/feature/pathway/PathwayScreen.kt b/src/main/kotlin/com/theapache64/stackzy/ui/feature/pathway/PathwayScreen.kt index 9686e10..d5488e9 100644 --- a/src/main/kotlin/com/theapache64/stackzy/ui/feature/pathway/PathwayScreen.kt +++ b/src/main/kotlin/com/theapache64/stackzy/ui/feature/pathway/PathwayScreen.kt @@ -107,7 +107,7 @@ fun PathwayScreen( ) PathwayCard( - text = "Libraries (beta)", + text = "Libraries", icon = painterResource("drawables/books.svg"), onClicked = onLibrariesSelected, onMouseEnter = viewModel::onLibrariesCardFocused, diff --git a/src/main/kotlin/com/theapache64/stackzy/ui/feature/pathway/PathwayViewModel.kt b/src/main/kotlin/com/theapache64/stackzy/ui/feature/pathway/PathwayViewModel.kt index 139c1aa..d9f2bab 100644 --- a/src/main/kotlin/com/theapache64/stackzy/ui/feature/pathway/PathwayViewModel.kt +++ b/src/main/kotlin/com/theapache64/stackzy/ui/feature/pathway/PathwayViewModel.kt @@ -69,7 +69,7 @@ class PathwayViewModel @Inject constructor( } fun onLibrariesCardFocused() { - _focusedCardInfo.value = "Find apps that are using a specific library (beta)" + _focusedCardInfo.value = "Find apps that are using a specific library" } fun onCardFocusLost() {