From 122cded872a67427123d0666a4dd79ec750ef914 Mon Sep 17 00:00:00 2001 From: Diego Cohen Date: Tue, 10 Dec 2024 15:06:08 -0500 Subject: [PATCH] Remove ternaries from HoldConfirmationItemDetails --- src/components/HoldPages/HoldConfirmationItemDetails.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/HoldPages/HoldConfirmationItemDetails.tsx b/src/components/HoldPages/HoldConfirmationItemDetails.tsx index d8d7c82e4..eed39a1a7 100644 --- a/src/components/HoldPages/HoldConfirmationItemDetails.tsx +++ b/src/components/HoldPages/HoldConfirmationItemDetails.tsx @@ -26,19 +26,15 @@ const HoldConfirmationItemDetails = ({ mb="l" mt={0} > - {pickupLocationLabel ? ( + {pickupLocationLabel && ( - ) : ( - <> )} - {item.barcode ? ( + {item.barcode && ( - ) : ( - <> )} )