We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2f1b50 commit 0a4b66eCopy full SHA for 0a4b66e
1 file changed
cli/src/hooks/use-freebuff-session.ts
@@ -460,7 +460,10 @@ export function useFreebuffSession(): UseFreebuffSessionResult {
460
useFreebuffModelStore
461
.getState()
462
.setSelectedModel(FALLBACK_FREEBUFF_MODEL_ID)
463
- nextMethod = 'GET'
+ // The unavailable response came from a POST attempt. Re-POST with
464
+ // the fallback model; a GET would only redisplay the old ended row
465
+ // and leave the restart banner stuck in its pending state.
466
+ nextMethod = 'POST'
467
schedule(0)
468
return
469
}
0 commit comments