fix: remove debug logging

This commit is contained in:
Julian Tölle 2020-07-11 19:48:18 +02:00
parent aecc82576a
commit f56218602e
6 changed files with 0 additions and 25 deletions

View file

@ -73,7 +73,6 @@ export const getRecentListens = async (
}
const listens: Pagination<Listen> = await res.json();
console.log("getRecentListens", { listens });
return listens;
};

View file

@ -34,7 +34,6 @@ function useProvideAuth(): AuthContext {
useEffect(() => {
(async () => {
try {
console.log("before calling getUsersMe");
const currentUser = await getUsersMe();
setUser(currentUser);
} catch (err) {