fix: sponsor api

This commit is contained in:
thomas
2024-06-11 16:19:57 +02:00
parent 1d51b736a6
commit ecc7c8d36c

View File

@@ -7,7 +7,7 @@
onMount(async () => {
const sponsorFetch = await fetch('https://ghs.vercel.app/v2/sponsors/tomalaforge');
const data = await sponsorFetch.json();
sponsors = data.sponsors.past;
sponsors = data.sponsors.current;
});
</script>