Skip to content

Commit

Permalink
Trying to add gh pages integration part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
coolGi69 committed Mar 31, 2024
1 parent 92137a7 commit fcd7b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/people.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import Layout from '../layouts/BaseLayout.astro';
fetch("https://api.github.com/orgs/CRModders/members")
.then(response => response.json())
.then(data => {
let people = !document.getElementById("people");
let people = document.getElementById("people");
data.forEach(person => {
let personDiv = document.createElement("div");
personDiv.className = "person";
Expand Down

0 comments on commit fcd7b5f

Please sign in to comment.