fmt(js): `npm run fix` on merge (#74544)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
dd51931bfd
commit
5a23e3c522
|
|
@ -174,9 +174,7 @@ describe('MessagingView pairing', () => {
|
|||
// connect/disconnect health via gateway_state.json, which a new pairing
|
||||
// request never moves. Riding it would leave someone invisible in the
|
||||
// pending list until an unrelated reconnect happened to fire.
|
||||
const { $changeEventsAvailable, $pairingChangeTick, $platformsChangeTick } = await import(
|
||||
'@/store/live-sync'
|
||||
)
|
||||
const { $changeEventsAvailable, $pairingChangeTick, $platformsChangeTick } = await import('@/store/live-sync')
|
||||
|
||||
getMessagingPlatforms.mockResolvedValue({ platforms: [platform()] })
|
||||
getPairing.mockResolvedValue({ approved: [], pending: [] })
|
||||
|
|
|
|||
|
|
@ -1416,6 +1416,7 @@ export function buildToolView(part: ToolPart, inlineDiff: string): ToolView {
|
|||
const error = status === 'success' ? '' : toolErrorText(part, resultRecord)
|
||||
// Over-budget memory refusals stay amber — don't claim "Saved".
|
||||
const memoryMissed = part.toolName === 'memory' && part.result !== undefined && status !== 'success'
|
||||
|
||||
const baseTitle =
|
||||
part.result === undefined
|
||||
? meta.pending
|
||||
|
|
|
|||
Loading…
Reference in New Issue