Skip to content

Commit

Permalink
chore: fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pac-guerreiro committed Jul 11, 2024
1 parent cfb59ee commit 531e0be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/libs/ReportUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7081,7 +7081,9 @@ function shouldShowMerchantColumn(transactions: Transaction[]) {
* Whether the report is a system chat or concierge chat, depending on the user's account ID (used for A/B testing purposes).
*/
function isChatUsedForOnboarding(optionOrReport: OnyxEntry<Report> | OptionData): boolean {
return AccountUtils.isAccountIDOddNumber(currentUserAccountID ?? -1) ? isSystemChat(optionOrReport) : ((optionOrReport as OptionData).isConciergeChat ?? isConciergeChatReport(optionOrReport));
return AccountUtils.isAccountIDOddNumber(currentUserAccountID ?? -1)
? isSystemChat(optionOrReport)
: (optionOrReport as OptionData).isConciergeChat ?? isConciergeChatReport(optionOrReport);
}

/**
Expand Down

0 comments on commit 531e0be

Please sign in to comment.