Internal Xcode install instruction

Reviewed By: elboman

Differential Revision: D51257660

fbshipit-source-id: 6cf213135f1070def3e62e936d6147b15749b7de
This commit is contained in:
Anton Kastritskiy
2023-11-13 08:26:13 -08:00
committed by Facebook GitHub Bot
parent 9dea899701
commit cb485613e4
2 changed files with 6 additions and 2 deletions

View File

@@ -133,7 +133,11 @@ function CollapsableCategory(props: {
key={check.key}
header={check.label}
extra={<CheckIcon status={check.result.status} />}>
<Paragraph>{check.result.message}</Paragraph>
{check.result.message?.split('\n').map((line, index) => (
<Paragraph key={index} style={{marginBottom: 0}}>
{line}
</Paragraph>
))}
{check.result.commands && (
<List>
{check.result.commands.map(({title, command}, i) => (