fix(ui): hit /topologies/ with trailing slash to keep bearer

FastAPI's redirect_slashes=True 307s /topologies → /topologies/, and
the browser drops Authorization on the redirected URL — the topology
picker in the canary create modal was landing as 401 even for admins.
Hit the canonical (trailing-slash) path so the request resolves on the
first hop.
This commit is contained in:
2026-04-28 23:18:39 -04:00
parent 0e5484648f
commit 463877b8fc

View File

@@ -868,7 +868,11 @@ const CanaryTokens: React.FC = () => {
api.get<DeckyOption[]>('/deckies').catch(() => ({ data: [] })),
// Active topologies only — planting on a torn-down or pending
// topology would 422/404 anyway. Endpoint shape: { data: [...] }
api.get('/topologies?status=active').catch(() => ({ data: { data: [] } })),
// Trailing slash matters: FastAPI's slash-redirect issues a 307
// and the browser re-fires without the Authorization header,
// landing as 401 on the redirected URL. Hit the canonical
// path (/topologies/) directly.
api.get('/topologies/?status=active').catch(() => ({ data: { data: [] } })),
]);
setTokens(t.data.tokens || []);
setBlobs(b.data.blobs || []);