Skip to content

Commit

Permalink
Add spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole White committed Feb 20, 2024
1 parent 751da14 commit 2cfa6bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/handlers/testing/exec/components/progress/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function TestRow(props: {
props.evals.every((e) => e.passed !== false) && props.errors.length === 0;
return (
<Box flexDirection="column">
<Box>
<Box columnGap={1}>
{props.runIsOver ? (
<Text color={testDidPassOverall ? 'green' : 'red'}>
{testDidPassOverall ? '✓' : '✗'}
Expand Down Expand Up @@ -225,6 +225,7 @@ const App = (props: { onListenersCreated: () => void }) => {
borderStyle="round"
borderColor="gray"
minHeight={12}
rowGap={1}
>
{testExternalIds.length === 0 && (
<Box>
Expand Down

0 comments on commit 2cfa6bb

Please sign in to comment.