diff --git a/src/layouts/pages/projectOfInterest/ProjectDisplay/index.tsx b/src/layouts/pages/projectOfInterest/ProjectDisplay/index.tsx index d2fa7610..ca86bab1 100644 --- a/src/layouts/pages/projectOfInterest/ProjectDisplay/index.tsx +++ b/src/layouts/pages/projectOfInterest/ProjectDisplay/index.tsx @@ -140,7 +140,7 @@ export default function ProjectDisplay() { html_url, } = row; let licenseName; - if (license) { + if (license && !(license.name === "") && !(license === "null")) { licenseName = license.name; } else { licenseName = "Not Available";