Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
pblvrt committed Jan 23, 2024
1 parent 7860acf commit 56cee10
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/app/lib/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export async function fetchEvents({
organizationId,
organizationSlug,
})
console.log(organization)
if (!organization) {
return []
}
Expand Down Expand Up @@ -109,9 +108,6 @@ export async function fetchEvent({
const data = await fetch(
`${apiUrl()}/events/${eventId ?? eventSlug}`
)
console.log(await data.json())

console.log("event data", eventSlug, (await data.json()).data)
return (await data.json()).data
} catch (e) {
console.log(e)
Expand Down

0 comments on commit 56cee10

Please sign in to comment.