Skip to content

Commit

Permalink
FAI-14387 Fix converter (#1858)
Browse files Browse the repository at this point in the history
  • Loading branch information
ypc-faros authored Dec 12, 2024
1 parent 1c86434 commit 1b05397
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class Users extends OktaConverter {
profile.department ??
null;

if (!this.seenDepartments.has(department)) {
if (department && !this.seenDepartments.has(department)) {
this.seenDepartments.add(department);
res.push({
model: 'org_Department',
Expand Down

0 comments on commit 1b05397

Please sign in to comment.