Fix: agent app debug re-rendering issue (#18389)

pull/18422/head
Kalo Chin 10 months ago committed by GitHub
parent 93c1ee225e
commit 9a3acdcff8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -234,4 +234,6 @@ const Answer: FC<AnswerProps> = ({
)
}
export default memo(Answer)
export default memo(Answer, (prevProps, nextProps) =>
prevProps.responding === false && nextProps.responding === false,
)

Loading…
Cancel
Save