show signup note in event signup list

This commit is contained in:
Michael Fatemi 2021-08-17 22:09:34 -04:00
parent 420c4ff9cc
commit ed0bcc8739

View File

@ -61,6 +61,12 @@ function EventSignup({ signup }: { signup: IEventSignup }) {
<b>{user.name}</b>
{extraDistance && ` +${extraDistance.toFixed(1)} miles`}{' '}
{signup.canDrive && ' (can drive)'}
{signup.note && (
<>
<br />
<span style={{ fontStyle: 'italic' }}>{signup.note}</span>
</>
)}
</span>
{!hasCarpool &&