From dac11c3fdd28d554cd7aa60e45b62a614638a07a Mon Sep 17 00:00:00 2001 From: Luke Stein <44452336+lukestein@users.noreply.github.com> Date: Tue, 3 Feb 2026 16:32:52 -0500 Subject: [PATCH] fix: Correct instruction text to match actual button text (#672) ## Summary * Instruction text says "Press OK to scan again" but button label is actually "Connect" (not OK) * Corrects instruction text --- ### AI Usage Did you use AI tools to help write this code? **No** --- src/activities/network/WifiSelectionActivity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activities/network/WifiSelectionActivity.cpp b/src/activities/network/WifiSelectionActivity.cpp index becd41a3..76bf1869 100644 --- a/src/activities/network/WifiSelectionActivity.cpp +++ b/src/activities/network/WifiSelectionActivity.cpp @@ -520,7 +520,7 @@ void WifiSelectionActivity::renderNetworkList() const { const auto height = renderer.getLineHeight(UI_10_FONT_ID); const auto top = (pageHeight - height) / 2; renderer.drawCenteredText(UI_10_FONT_ID, top, "No networks found"); - renderer.drawCenteredText(SMALL_FONT_ID, top + height + 10, "Press OK to scan again"); + renderer.drawCenteredText(SMALL_FONT_ID, top + height + 10, "Press Connect to scan again"); } else { // Calculate how many networks we can display constexpr int startY = 60;