fix: removed console.log
This commit is contained in:
parent
8d6bbe13de
commit
d689f9a7a5
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue