diff --git a/CHANGELOG.md b/CHANGELOG.md index 10947bc..bb6cdf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ ## 0.2.53 — 2026-08-11 +- Fixed: Removed the home-screen message asking viewers to open the For You page. - Improved: The play button used by the mini hero cards now appears over every focused poster. - Improved: Reduced the primary hero logo so its supporting details remain visible. - Improved: The profile rail now shows the name of the user signed in on the television. diff --git a/app/src/main/java/com/ponzischeme89/memby/ui/MainActivity.kt b/app/src/main/java/com/ponzischeme89/memby/ui/MainActivity.kt index 83a17dc..912e037 100644 --- a/app/src/main/java/com/ponzischeme89/memby/ui/MainActivity.kt +++ b/app/src/main/java/com/ponzischeme89/memby/ui/MainActivity.kt @@ -4399,13 +4399,6 @@ private fun ForYouNudgeBanner( maxLines = 1, overflow = TextOverflow.Ellipsis, ) - Text( - "Open For You from the menu and choose how much time you have.", - color = MembyMutedText, - fontSize = 15.sp, - maxLines = 1, - overflow = TextOverflow.Ellipsis, - ) } } }