Skip to content

Commit 3481e50

Browse files
committed
fix: put string inside Text
1 parent 2a91b1b commit 3481e50

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Summary.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,9 @@ const Time: React.FC<{
255255
return (
256256
<Box>
257257
{renderedTime}
258-
{runTime < estimatedTime ? <>, estimated {estimatedTime}s</> : null}
258+
{runTime < estimatedTime ? (
259+
<Text>, estimated {estimatedTime}s</Text>
260+
) : null}
259261
</Box>
260262
);
261263
};

0 commit comments

Comments
 (0)