Skip to content

Commit

Permalink
Merge pull request #51226 from Expensify/georgia-firebaseLoginCrash
Browse files Browse the repository at this point in the history
[CP Staging] [Firebase] replace empty string with `'N/A'`
  • Loading branch information
grgia authored Oct 22, 2024
2 parents 04214cd + 97296fe commit f3d92ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libs/Firebase/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ function getAttributes(): FirebaseAttributes {
transactionViolationsLength,
policiesLength,
transactionsLength,
policyType: policy?.type ?? '',
policyRole: policy?.role ?? '',
policyType: policy?.type ?? 'N/A',
policyRole: policy?.role ?? 'N/A',
};
}

Expand Down

0 comments on commit f3d92ce

Please sign in to comment.