File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ export default function StageNotes({ reviewsInStage: reviews }: StageNotesProps)
21
21
return (
22
22
< div className = "tw:bg-cream-primary tw:p-6 tw:rounded-lg" >
23
23
< h3 className = "tw:!m-0 tw:!mb-2 tw:!text-teal-primary tw:!text-xl" > Notes: </ h3 >
24
- < div className = "tw:flex tw:flex-col tw:gap-3 " >
24
+ < div className = "tw:flex tw:flex-col tw:gap-5 " >
25
25
{ notesFields . map ( ( [ key , value , email ] ) => {
26
26
const label = formatFieldNameHumanReadable ( key ) . replace ( "Notes" , "" ) . trim ( ) ;
27
27
28
28
return (
29
29
< div key = { `${ key } -${ email } ` } className = "tw:flex tw:flex-col" >
30
30
({ emailsToUsers [ email ] ?. name ?? "(unknown user)" } )
31
- < div >
31
+ < div className = "tw:flex tw:flex-col" >
32
32
< span className = "tw:font-medium" > { label === "" ? "General" : label } : </ span >
33
33
< span className = "tw:whitespace-pre-line" > { value } </ span >
34
34
</ div >
You can’t perform that action at this time.
0 commit comments