Fix source link for projects

This commit is contained in:
tree🌴 2024-02-01 13:19:56 +01:00 committed by GitHub
parent 2fe79beb58
commit 0169d4c29d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { useRoute } from 'vue-router'
const route = useRoute()
const githubProjectUrl = computed(() => {
return `https://github.com/web3privacy/data/blob/main/src/projects/${route.params.id}/index.yaml`
return `https://github.com/web3privacy/explorer-data/blob/main/src/projects/${route.params.id}/index.yaml`
})
</script>