fix: removed console.log

This commit is contained in:
Elie Baier 2024-03-24 11:29:25 +01:00
parent 8d6bbe13de
commit d689f9a7a5
1 changed files with 0 additions and 2 deletions

View File

@ -58,13 +58,11 @@ export default function CreateApplicationForm() {
});
const { data: session } = useSession();
console.log('user', session);
useEffect(() => {
async function fetchRepositories() {
if (serviceProvider == 'github') {
const repos = await getUserRepository(session?.user.id as string, session?.user.username as string);
console.log(session?.user.username as string, repos);
setRepositories(repos);
}
}