fix: final cleanup — disable radial menu, document auth pattern

B14: Comment out RadialMenu render — all 5 wedges show "coming soon"
     toasts with no functional actions. Code preserved for when
     actions are wired.

B5:  Add detailed JSDoc to fetchAuthState explaining the
     redirect:manual pattern and its dependencies on Caddy/Authentik
     configuration.

B9:  Investigated — user-select CSS errors come from MapLibre's own
     maplibre-gl.css, not our code. WONTFIX (library issue).

Caddy changes (CT 101):
B6:  Fixed recon.echo6.co header stripping bug — same pattern as navi
B8:  Added /api/traffic/* to @authed_user (TomTom API must be authed)
This commit is contained in:
Matt 2026-04-27 04:11:34 +00:00
commit 53d25dafd8
2 changed files with 14 additions and 2 deletions

View file

@ -1504,7 +1504,7 @@ const MapView = forwardRef(function MapView(_, ref) {
>
Z {zoomLevel.toFixed(1)}
</div>
{/* Radial context menu */}
{/* Radial menu disabled until actions are wired
<RadialMenu
open={radialMenu.open}
x={radialMenu.x}
@ -1515,6 +1515,7 @@ const MapView = forwardRef(function MapView(_, ref) {
centerLabel={radialMenu.centerLabel}
onDismiss={() => setRadialMenu((m) => ({ ...m, open: false }))}
/>
*/}
</div>
)
})