Skip to content

Commit 1b65797

Browse files
Merge pull request #59 from rootstrap/fix/fix-github-starts-to-show-stars-for-rootstrap-template-repo
fix: fix github stars point to rs repo
2 parents ba112ed + b0fb905 commit 1b65797

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/src/components/GithubStar.astro

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ import { Icon } from '@astrojs/starlight/components';
7272
color: var(--sl-color-accent-high);
7373
}
7474
.star-count{
75+
text-align: right;
7576
font-weight: 700;
7677
min-width: 20px;
7778
color: transparent;
@@ -90,7 +91,7 @@ import { Icon } from '@astrojs/starlight/components';
9091
if (starCountElement) {
9192
starCountElement.classList.add("spinner");
9293

93-
fetch("https://api.github.com/repos/obytes/react-native-template-obytes")
94+
fetch("https://api.github.com/repos/rootstrap/react-native-template")
9495
.then((response) => response.json())
9596
.then((data) => {
9697
starCountElement.classList.remove("spinner");
@@ -108,7 +109,7 @@ import { Icon } from '@astrojs/starlight/components';
108109
<a
109110
target="_blank"
110111
rel="noreferrer noopener"
111-
href="https://github.com/obytes/react-native-template-obytes"
112+
href="https://github.com/rootstrap/react-native-template"
112113
class="link">
113114
<span
114115
id="star-count"

0 commit comments

Comments
 (0)