summaryrefslogtreecommitdiff
path: root/examples/docs/src/components
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-11-23 14:47:05 -0800
committerGravatar GitHub <noreply@github.com> 2021-11-23 14:47:05 -0800
commit7476a92461c4ed3e9b879d3ee7669ba59d027248 (patch)
tree8d32e787f467b8efdcc2de52786cd306834c4d36 /examples/docs/src/components
parent9ed6b3c0f00722436f4b30829046c1e9ef4e5765 (diff)
downloadastro-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.astro4
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 {