From 9a9ac3af7705c9d28b0377360033e5eb180ca786 Mon Sep 17 00:00:00 2001 From: firestar5683 <168790843+firestar5683@users.noreply.github.com> Date: Mon, 8 Jun 2026 20:30:44 -0500 Subject: [PATCH] navstate --- starpilot/system/the_pond/the_pond.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/starpilot/system/the_pond/the_pond.py b/starpilot/system/the_pond/the_pond.py index 5f8128874..8a68c2e9b 100644 --- a/starpilot/system/the_pond/the_pond.py +++ b/starpilot/system/the_pond/the_pond.py @@ -3543,6 +3543,8 @@ def setup(app): @app.route("/api/navigation", methods=["DELETE"]) def clear_navigation(): params.remove("NavDestination") + params_memory.remove("NavInstructionState") + params_memory.remove("NavInstructionCollapsed") return {"message": "Destination cleared"} @app.route("/api/navigation", methods=["GET"])