Skip to content

Commit b85aabb

Browse files
committed
fix: Broken external url
1 parent cbcd502 commit b85aabb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/(root)/team/page.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import MembersAndAlumni from "@/components/team/membersAndAlumni";
33
import Contact from "../contact/page";
44
import TeamHeroSection from "@/components/team/teamHeroSection"; // Client Component for the page's hero and motion logic
55

6-
const MEMBERS_DATA_URL = 'https://raw.githubusercontent.com/amfoss/production-data/main/members.json';
7-
const ALUMNI_DATA_URL = 'https://raw.githubusercontent.com/amfoss/production-data/main/alumni.json';
6+
const MEMBERS_DATA_URL = 'https://raw.githubusercontent.com/amfoss/member-directory/production-data/members.json';
7+
const ALUMNI_DATA_URL = 'https://raw.githubusercontent.com/amfoss/member-directory/production-data/alumni.json';
88
async function fetchTeamData(url) {
99
try {
1010
const response = await fetch(url);

0 commit comments

Comments
 (0)