Skip to content

Commit

Permalink
fix: flexWrap
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Sep 5, 2024
1 parent aa0dce7 commit fb002bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/stages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export type StagesProps = {
function StaticKeyValue({color, isBold, label, value}: FormattedKeyValue): React.ReactNode {
if (!value) return false
return (
<Box key={label}>
<Box key={label} flexWrap="wrap">
<Text bold={isBold}>{label}: </Text>
<Text color={color}>{value}</Text>
</Box>
Expand Down

0 comments on commit fb002bc

Please sign in to comment.