Skip to content

Commit

Permalink
Updated github username
Browse files Browse the repository at this point in the history
  • Loading branch information
slmn-sh authored Feb 5, 2025
1 parent 1381730 commit 1ac35ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ export default function Footer() {
const [showList, setShowList] = useState<boolean>(false);
useEffect(() => {
const URL =
"https://api.github.com/repos/salmannotkhan/typing-test/contributors";
"https://api.github.com/repos/slmn-sh/typing-test/contributors";
fetch(URL)
.then((res) => res.json())
.then((data: Contributor[]) =>
data.filter(
(contributor) => contributor.login !== "salmannotkhan"
(contributor) => contributor.login !== "slmn-sh"
)
)
.then((filtered) => setContributors(filtered));
Expand All @@ -54,16 +54,16 @@ export default function Footer() {
<a
target="_blank"
rel="noreferrer"
href="https://www.github.com/salmannotkhan/typing-test">
href="https://www.github.com/slmn-sh/typing-test">
<span>&lt;/&gt;</span> github
</a>
<span>
created by{" "}
<a
target="_blank"
rel="noreferrer"
href="https://www.github.com/salmannotkhan">
@salmannotkhan
href="https://www.github.com/slmn-sh">
@slmn-sh
</a>
</span>
{showList ? (
Expand Down

0 comments on commit 1ac35ab

Please sign in to comment.