Skip to content

Commit

Permalink
Merge pull request #114 from Alaboudi1/hotFix-project
Browse files Browse the repository at this point in the history
Update Developers.astro
  • Loading branch information
Alaboudi1 authored Apr 15, 2024
2 parents e9ab617 + 624b727 commit a32fb63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homepage/src/components/sections/Developers.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import devs from "../../../../devs.json";
return searchRegex.test(dev.name)
|| dev.projects.some((project) => searchRegex.test(project.name))
|| searchRegex.test(gitHubId)
|| dev.projects.some((project) => searchRegex.test(project.details.language))
|| dev.projects.some((project) => searchRegex.test(project.details?.language))
});
const divs = document.querySelectorAll("[data-type='dev']");
divs.forEach((div) => {
Expand Down

0 comments on commit a32fb63

Please sign in to comment.