Skip to content

Commit

Permalink
fix: remove another console log
Browse files Browse the repository at this point in the history
  • Loading branch information
sosweetham committed May 7, 2024
1 parent 0ea90f4 commit e4bb78f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/src/libs/guilded-scrape.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export const guildedMediaLink = (awsUrl?: string) => {

export const guildedUserProfileScrape: (id: string, getElement: 'avatar' | 'banner') => Promise<Blob|Error> = async (id: string, getElement: 'avatar' | 'banner') => {
const profile = await (await fetch(`https://www.guilded.gg/api/users/${id}/profilev3`, {keepalive: false})).json()
console.log(profile)
if (!profile) {
return new Error('User not found')
}
Expand Down

0 comments on commit e4bb78f

Please sign in to comment.