From ed0bcc87395550af90bef0699135d37f31fa6e1e Mon Sep 17 00:00:00 2001 From: Michael Fatemi Date: Tue, 17 Aug 2021 22:09:34 -0400 Subject: [PATCH] show signup note in event signup list --- src/components/Event/EventSignups.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/Event/EventSignups.tsx b/src/components/Event/EventSignups.tsx index ee25d9e..9725cac 100644 --- a/src/components/Event/EventSignups.tsx +++ b/src/components/Event/EventSignups.tsx @@ -61,6 +61,12 @@ function EventSignup({ signup }: { signup: IEventSignup }) { {user.name} {extraDistance && ` +${extraDistance.toFixed(1)} miles`}{' '} {signup.canDrive && ' (can drive)'} + {signup.note && ( + <> +
+ {signup.note} + + )} {!hasCarpool &&