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 +}