Skip to content

Commit

Permalink
chore: removed console logs from project
Browse files Browse the repository at this point in the history
  • Loading branch information
riya09 committed Oct 29, 2024
1 parent 8603e0e commit 9227b44
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion apps/jonogon-web-next/src/auth/Wrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export default function AuthWrapper(props: PropsWithChildren) {
});
}, [setAuthState]);

console.log({authState});

return (
<AuthStateProvider authState={authState}>
Expand Down
3 changes: 0 additions & 3 deletions apps/jonogon-web-next/src/firebase/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ const firebaseConfig = returnOf(() => {
const parsed = JSON.parse(
decode(process.env.NEXT_PUBLIC_FIREBASE_WEB_CONFIG_JSON_BASE64URL),
);

console.log(parsed);

return parsed;
});

Expand Down
1 change: 0 additions & 1 deletion apps/jonogon-web-next/src/trpc/Wrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ export function TRPCWrapper(props: PropsWithChildren<{hostname: string}>) {
? `http://${props.hostname}:12001/trpc`
: 'https://core.jonogon.org/trpc',
headers: async () => {
console.log('tomato');
return {};
},
}),
Expand Down

0 comments on commit 9227b44

Please sign in to comment.