Skip to content

Commit 0a1016e

Browse files
authored
Merge branch 'main' into feat/remove-jumpcloud-code-based
2 parents 0775aaf + f47eaf6 commit 0a1016e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

apps/api/src/frameworks/frameworks-scores.helper.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ export async function getOverviewScores(organizationId: string) {
2020
}),
2121
db.task.findMany({ where: { organizationId, archivedAt: null } }),
2222
db.member.findMany({
23-
where: { organizationId, deactivated: false },
23+
where: {
24+
organizationId,
25+
deactivated: false,
26+
isActive: true,
27+
},
2428
include: { user: true },
2529
}),
2630
db.onboarding.findUnique({

0 commit comments

Comments
 (0)