From b6a49abdde3f9975b2a40534af3cc32611ddc05c Mon Sep 17 00:00:00 2001 From: Crxa Date: Sun, 16 Mar 2025 21:42:00 +0000 Subject: [PATCH] Hopefully fixed it? --- .../githubRepos/components/GitHubReposComponent.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/equicordplugins/githubRepos/components/GitHubReposComponent.tsx b/src/equicordplugins/githubRepos/components/GitHubReposComponent.tsx index e99aacb4..6199ec22 100644 --- a/src/equicordplugins/githubRepos/components/GitHubReposComponent.tsx +++ b/src/equicordplugins/githubRepos/components/GitHubReposComponent.tsx @@ -1,6 +1,13 @@ +/* + * Vencord, a Discord client mod + * Copyright (c) 2025 Vendicated and contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import { Flex } from "@components/Flex"; import { openModal } from "@utils/modal"; -import { UserProfileStore, React, useEffect, useState } from "@webpack/common"; +import { React, useEffect, UserProfileStore, useState } from "@webpack/common"; + import { fetchReposByUserId, fetchReposByUsername, fetchUserInfo, GitHubUserInfo } from "../services/githubApi"; import { GitHubRepo } from "../types"; import { settings } from "../utils/settings"; @@ -95,6 +102,7 @@ export function GitHubReposComponent({ id, theme }: { id: string, theme: string; {topRepos.map(repo => ( ); -} \ No newline at end of file +}