From 3a17624ddc97f892a9f53afcfcabb520ffef9123 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Mon, 27 Jul 2026 20:56:46 +0200 Subject: [PATCH] style(simulation): cargo fmt the Global extent fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Caught by the push gate, whose new named-failure block reported it as '- cargo fmt' with the fix command — the information the old anonymous '1 check(s) failed' withheld, on its first real outing. No behaviour change. Co-Authored-By: Claude --- server/src/atlas/step_canvas.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/server/src/atlas/step_canvas.rs b/server/src/atlas/step_canvas.rs index 8b9d84de2..3e00ee77f 100644 --- a/server/src/atlas/step_canvas.rs +++ b/server/src/atlas/step_canvas.rs @@ -1600,11 +1600,8 @@ pub fn serve_step_canvas_request( // The size this request will actually resolve to — the cache must be // consulted against THAT, not against the raw wire extent, because // Global fits the largest 2:1 canvas inside what was asked for. - let want = resolve_canvas_extent( - req.rung, - extent, - body_params.body_radius_km.unwrap_or(0.0), - ); + let want = + resolve_canvas_extent(req.rung, extent, body_params.body_radius_km.unwrap_or(0.0)); if let Some(canvas) = global_cache.get(&req.body_id, want) { return StepCanvasResponse { body_id: req.body_id.clone(),