diff --git a/services/web/frontend/js/features/review-panel-new/components/review-panel-add-comment.tsx b/services/web/frontend/js/features/review-panel-new/components/review-panel-add-comment.tsx index ba783f3ada..7213dc46ff 100644 --- a/services/web/frontend/js/features/review-panel-new/components/review-panel-add-comment.tsx +++ b/services/web/frontend/js/features/review-panel-new/components/review-panel-add-comment.tsx @@ -64,7 +64,9 @@ export const ReviewPanelAddComment = memo<{ const handleBlur = useCallback(() => { if (content === '') { - handleClose() + window.setTimeout(() => { + handleClose() + }) } }, [content, handleClose])