fmt(js): `npm run fix` on merge (#81276)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
hermes-seaeye[bot] 2026-08-07 19:02:38 +00:00 committed by GitHub
parent 33edfe9a81
commit 005421d888
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 11 deletions

View File

@ -91,18 +91,13 @@ export async function runRewindSubmit(
)
const submit = async () => {
const { sessionId: usedId } = await withSessionNotFoundResume(
liveSessionId,
recovery?.storedSessionId,
submitFor,
{
requestGateway,
onRecovered: recoveredId => {
liveSessionId = recoveredId
recovery?.onSessionRecovered?.(recoveredId)
}
const { sessionId: usedId } = await withSessionNotFoundResume(liveSessionId, recovery?.storedSessionId, submitFor, {
requestGateway,
onRecovered: recoveredId => {
liveSessionId = recoveredId
recovery?.onSessionRecovered?.(recoveredId)
}
)
})
liveSessionId = usedId
}