From 05ed553c538092904e5e1d61dc9753ac5ea911e4 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Tue, 30 Jun 2026 15:16:18 -0500 Subject: [PATCH] fix(journey): satisfy desktop eslint sort rules in star map The merged #55859 left the star-map NodeContextMenu import and the canvas onContextMenu prop out of perfectionist's required order, failing `npm run lint` in the desktop workspace. Reorder both. --- apps/desktop/src/app/starmap/star-map.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/app/starmap/star-map.tsx b/apps/desktop/src/app/starmap/star-map.tsx index d4427c0eadd..a1a5b652c59 100644 --- a/apps/desktop/src/app/starmap/star-map.tsx +++ b/apps/desktop/src/app/starmap/star-map.tsx @@ -10,13 +10,13 @@ import type { StarmapGraph } from '@/types/hermes' import { computePalette, memoryInkFor, resolveRgb, rgba } from './color' import { RING_OUTER, TILT, ZOOM_MAX, ZOOM_MIN } from './constants' import { clamp, distToSegmentSq, fitScale, fitViewport, nodeRadius } from './geometry' +import { NodeContextMenu, type NodeMenuTarget } from './node-context-menu' import { drawScene, drawScramble } from './render' import { decodeShareCode, encodeShareCode, ShareCodeError } from './share-code' import { ShareControls } from './share-controls' import { buildSimulation } from './simulation' import { formatDate } from './text' import { buildTimeAxis, dateAtReveal, type TimeAxis } from './time-axis' -import { NodeContextMenu, type NodeMenuTarget } from './node-context-menu' import { Timeline } from './timeline' import type { FadeBuckets, MemoryCard, Palette, Ring, RingLabelRect, SimLink, SimNode, Viewport } from './types' @@ -918,10 +918,10 @@ export function StarMap({