diff options
Diffstat (limited to 'examples/docs/src/components')
-rw-r--r-- | examples/docs/src/components/Footer/AvatarList.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/docs/src/components/Footer/AvatarList.astro b/examples/docs/src/components/Footer/AvatarList.astro index 589e296b9..429676990 100644 --- a/examples/docs/src/components/Footer/AvatarList.astro +++ b/examples/docs/src/components/Footer/AvatarList.astro @@ -1,8 +1,8 @@ --- // fetch all commits for just this page's path const path = "docs/" + Astro.props.path; -const url = `https://api.github.com/repos/snowpackjs/astro/commits?path=${path}`; -const commitsURL = `https://github.com/snowpackjs/astro/commits/main/${path}`; +const url = `https://api.github.com/repos/withastro/astro/commits?path=${path}`; +const commitsURL = `https://github.com/withastro/astro/commits/main/${path}`; async function getCommits(url) { try { |