diff --git a/src/Summary.tsx b/src/Summary.tsx index d113986..6b7a1fb 100644 --- a/src/Summary.tsx +++ b/src/Summary.tsx @@ -255,7 +255,9 @@ const Time: React.FC<{ return ( {renderedTime} - {runTime < estimatedTime ? <>, estimated {estimatedTime}s : null} + {runTime < estimatedTime ? ( + , estimated {estimatedTime}s + ) : null} ); };