We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef0299d commit b1fadf9Copy full SHA for b1fadf9
1 file changed
services/libs/common_services/src/services/member-organization.ts
@@ -217,8 +217,7 @@ export function inferMemberOrganizationStintChanges(
217
const overlapEnd = s.dateEnd < gapEnd ? s.dateEnd : gapEnd
218
if (overlapStart >= overlapEnd) return false
219
220
- // Pre-existing orgs that wrap the neighbor naturally have gap presence just by existing,
221
- // so require 90d (vs 30d) of exclusive gap overlap to count as a real career break.
+ // Wrapping orgs were already concurrent, so need >90d (vs >30d) to separate
222
const isUmbrella = s.dateStart <= neighbor.dateStart && s.dateEnd >= neighbor.dateEnd
223
const threshold = isUmbrella ? 90 : 30
224
0 commit comments