diff options
author | 2021-11-23 14:47:05 -0800 | |
---|---|---|
committer | 2021-11-23 14:47:05 -0800 | |
commit | 7476a92461c4ed3e9b879d3ee7669ba59d027248 (patch) | |
tree | 8d32e787f467b8efdcc2de52786cd306834c4d36 /examples/docs/src/components | |
parent | 9ed6b3c0f00722436f4b30829046c1e9ef4e5765 (diff) | |
download | astro-7476a92461c4ed3e9b879d3ee7669ba59d027248.tar.gz astro-7476a92461c4ed3e9b879d3ee7669ba59d027248.tar.zst astro-7476a92461c4ed3e9b879d3ee7669ba59d027248.zip |
update repo URL (#1994)
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 { |