Skip to content

Commit

Permalink
fix: fix debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
YujohnNattrass committed Nov 23, 2024
1 parent f1c1be9 commit 956b905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/config/src/api/site_info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const getIntegrations = async function ({
const response = await fetch(url)

const integrations = await response.json()
console.log(`## get integrations ##`, JSON.stringify(getIntegrations, null, 2))
console.log(`## get integrations ##`, JSON.stringify(integrations, null, 2))
return Array.isArray(integrations) ? integrations : []
} catch (error) {
// Integrations should not block the build if they fail to load
Expand Down

0 comments on commit 956b905

Please sign in to comment.