Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,16 @@ const CopilotOpportunityDetails: FC<{}> = () => {
<span className={styles.infoValue}>{opportunity?.tzRestrictions}</span>
</div>
</div>
<div className={styles.infoColumn}>
<IconOutline.CashIcon className={styles.icon} />
<div className={styles.infoText}>
<span className={styles.infoHeading}>Payment</span>
<span className={styles.infoValue}>
{opportunity?.paymentType === 'standard'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider using a more descriptive variable name for otherPaymentType to clarify its purpose and ensure consistency with the rest of the codebase.

? opportunity.paymentType : opportunity?.otherPaymentType}
</span>
</div>
</div>
</div>
{
initialized && (
Expand Down