Skip to content

Commit

Permalink
fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
craigrbarnes committed Aug 8, 2024
1 parent b673740 commit 32b4c56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/CohortBuilder/CustomCellRenderers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { FaExternalLinkAlt } from 'react-icons/fa';

const RenderDiacomLink = ({ cell }: CellRendererFunctionProps) => {
if (!cell.getValue() || cell.getValue() === '') {
return <span></span>
return <span></span>;
} else
return (
<a href={`${cell.getValue()}`} target="_blank" rel="noreferrer">
Expand Down

0 comments on commit 32b4c56

Please sign in to comment.