fix(ui-models): contain the card's credential probe rejection

The review named this call site with the other two, and the previous pass
missed it: the editor card's mount-time `credentials.describe` had only a
fulfillment handler, so a transport failure reached the browser as an
unhandled rejection.

The probe is a placeholder hint ("already configured"), never a precondition
for editing, so it now renders without the hint rather than failing. Covered
by a test that fails without the handler.
This commit is contained in:
Yichen Jiang
2026-07-30 19:29:30 +08:00
parent e6483f0afc
commit 4395268cc1
2 changed files with 36 additions and 4 deletions
@@ -141,10 +141,17 @@ export function ProviderEditor(props: ProviderEditorProps): ReactNode {
useEffect(() => {
let stale = false
setKeyState(undefined)
void api.credentials.describe({ refs: [keyRef] }).then((response) => {
if (stale || !response.result.ok) return
setKeyState(response.result.value.credentials[keyRef])
})
// The key state is a placeholder hint, not a precondition for editing:
// neither a business rejection nor a transport failure may reach the
// browser as an unhandled rejection, so the card simply renders without
// the "already configured" hint.
void api.credentials.describe({ refs: [keyRef] }).then(
(response) => {
if (stale || !response.result.ok) return
setKeyState(response.result.value.credentials[keyRef])
},
() => undefined,
)
return () => { stale = true }
}, [api.credentials, keyRef])