chore: uptick

This commit is contained in:
Brooklyn Nicholson 2026-04-23 14:37:27 -05:00
parent 9bf6e1cd6e
commit 882278520b
2 changed files with 5 additions and 10 deletions

View file

@ -672,7 +672,10 @@ export function useMainApp(gw: GatewayClient) {
return top + vp >= total - 3
})()
const liveProgress = useMemo(() => ({ ...turn, showProgressArea, showStreamingArea: Boolean(turn.streaming) }), [turn, showProgressArea])
const liveProgress = useMemo(
() => ({ ...turn, showProgressArea, showStreamingArea: Boolean(turn.streaming) }),
[turn, showProgressArea]
)
const frozenProgressRef = useRef(liveProgress)