Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/app/src/cli/models/app/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ async function logMetadataForLoadedAppUsingRawValues(

const webBackendCount = webs.filter((web) => isWebType(web, WebType.Backend)).length
const webBackendFramework =
webBackendCount === 1 ? webs.filter((web) => isWebType(web, WebType.Backend))[0]?.framework : undefined
webBackendCount === 1 ? webs.find((web) => isWebType(web, WebType.Backend))?.framework : undefined
const webFrontendCount = webs.filter((web) => isWebType(web, WebType.Frontend)).length

const extensionsBreakdownMapping: {[key: string]: number} = {}
Expand Down
Loading