Skip to content

Commit

Permalink
Fix germline page crash
Browse files Browse the repository at this point in the history
  • Loading branch information
jfkonecn committed Jan 15, 2025
1 parent 63bbd18 commit dd92698
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const GeneticTypeTabHeader = ({
);
} else {
const isAnotherUserReviewing =
meta?.review?.currentReviewer !== '' && meta?.review?.currentReviewer.toLowerCase() !== fullName?.toLowerCase();
meta?.review?.currentReviewer !== '' && meta?.review?.currentReviewer?.toLowerCase() !== fullName?.toLowerCase();
button = (
<Button
outline
Expand Down

0 comments on commit dd92698

Please sign in to comment.