From 96a378f25fc8f367e361cdefe037d48e5a1c5017 Mon Sep 17 00:00:00 2001 From: Ian Philips Date: Wed, 13 Jul 2022 07:41:58 -0600 Subject: [PATCH] Handle free response resolution --- web/pages/notifications.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/web/pages/notifications.tsx b/web/pages/notifications.tsx index 10ae1ec8..2001c557 100644 --- a/web/pages/notifications.tsx +++ b/web/pages/notifications.tsx @@ -774,8 +774,17 @@ function NotificationTextLabel(props: { ) if (sourceText === 'CANCEL') return if (sourceText === 'MKT' || sourceText === 'PROB') return + // Numeric market - return + if (parseFloat(sourceText)) + return + + // Free response market + return ( +
+ +
+ ) } } // Close date will be a number - it looks better without it