From 9fbdb81bb0bda2691e369c185f446d846c2eaa57 Mon Sep 17 00:00:00 2001 From: Giovanni de Maria Date: Sun, 17 Nov 2024 19:30:37 +0100 Subject: [PATCH] minor change --- frontend/src/components/AvailabilitiesTable.jsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/AvailabilitiesTable.jsx b/frontend/src/components/AvailabilitiesTable.jsx index 638f3f9..2b31f64 100644 --- a/frontend/src/components/AvailabilitiesTable.jsx +++ b/frontend/src/components/AvailabilitiesTable.jsx @@ -539,11 +539,9 @@ function AvailabilitiesTable({ authUser }) { ) } > - {matchingAvailability ? ( - renderInterview(matchingAvailability.interview) - ) : ( - - )} + {matchingAvailability + ? renderInterview(matchingAvailability.interview) + : ""} ); })}