Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannidemaria committed Nov 17, 2024
1 parent 0d6a3d9 commit 9fbdb81
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions frontend/src/components/AvailabilitiesTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -539,11 +539,9 @@ function AvailabilitiesTable({ authUser }) {
)
}
>
{matchingAvailability ? (
renderInterview(matchingAvailability.interview)
) : (
<FaPlus />
)}
{matchingAvailability
? renderInterview(matchingAvailability.interview)
: ""}
</td>
);
})}
Expand Down

0 comments on commit 9fbdb81

Please sign in to comment.