From 30d58d8e5ba6c97ae04a90cc08d14e2f8b0d337a Mon Sep 17 00:00:00 2001 From: mikecarper Date: Tue, 8 Sep 2026 17:46:37 -0700 Subject: [PATCH] cleanup --- examples/companion_radio/ui-new/JohnReaderScreen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/companion_radio/ui-new/JohnReaderScreen.h b/examples/companion_radio/ui-new/JohnReaderScreen.h index 8a89749a..d3716593 100644 --- a/examples/companion_radio/ui-new/JohnReaderScreen.h +++ b/examples/companion_radio/ui-new/JohnReaderScreen.h @@ -94,7 +94,7 @@ class JohnReaderScreen : public UIScreen { if (!draw) return; char label[32], progress[16]; const Reference ref = referenceAt(pos.verse); - snprintf(label, sizeof(label), "John %u:%u WEB", ref.chapter, ref.verse); + snprintf(label, sizeof(label), "John %u:%u", ref.chapter, ref.verse); snprintf(progress, sizeof(progress), "%u/%u", page.part, page.parts); const int progress_width = _display->getTextWidth(progress); if (stacked_header || _display->getTextWidth(label) > width - progress_width - 4)