From 12d98ca99924da37fb1ec8d4a125847eafcb61b5 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Mon, 28 Jul 2025 22:51:24 -0700 Subject: [PATCH] add comment --- contact/ui/contact_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contact/ui/contact_ui.py b/contact/ui/contact_ui.py index d21eb5b..a0adf59 100644 --- a/contact/ui/contact_ui.py +++ b/contact/ui/contact_ui.py @@ -321,7 +321,7 @@ def handle_enter(input_text: str) -> str: return input_text elif len(input_text) > 0: - + # TODO: This is a hack to prevent sending messages too quickly. Let's get errors from the node. now = time.monotonic() if now - ui_state.last_sent_time < 2.5: contact.ui.dialog.dialog("Slow down", "Please wait 2 seconds between messages.")