From b0fb905ffef5e11a5f0edd6e874c60eda4a4f393 Mon Sep 17 00:00:00 2001 From: Guillermo Machado Date: Mon, 9 Sep 2024 13:51:44 -0300 Subject: [PATCH] fix: fix github stars point to rs repo --- docs/src/components/GithubStar.astro | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/src/components/GithubStar.astro b/docs/src/components/GithubStar.astro index ba814090b..40d5a95f1 100644 --- a/docs/src/components/GithubStar.astro +++ b/docs/src/components/GithubStar.astro @@ -72,6 +72,7 @@ import { Icon } from '@astrojs/starlight/components'; color: var(--sl-color-accent-high); } .star-count{ + text-align: right; font-weight: 700; min-width: 20px; color: transparent; @@ -90,7 +91,7 @@ import { Icon } from '@astrojs/starlight/components'; if (starCountElement) { starCountElement.classList.add("spinner"); - fetch("https://api.github.com/repos/obytes/react-native-template-obytes") + fetch("https://api.github.com/repos/rootstrap/react-native-template") .then((response) => response.json()) .then((data) => { starCountElement.classList.remove("spinner"); @@ -108,7 +109,7 @@ import { Icon } from '@astrojs/starlight/components';