Skip to content

Commit 82c5f6a

Browse files
committed
fix: lint
1 parent fbe6eff commit 82c5f6a

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/apps/copilots/src/pages/copilot-opportunity-details/tabs/copilot-applications/AlreadyMemberModal.tsx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,20 @@ const AlreadyMemberModal: FC<AlreadyMemberModalProps> = props => (
3333
project with ${props.copilotApplication.existingMembership?.role} role.`}
3434

3535
{
36-
props.copilotApplication.existingMembership
36+
props.copilotApplication.existingMembership
3737
&& ['copilot', 'manager'].includes(props.copilotApplication.existingMembership.role)
3838
&& <div>Click &apos;Confirm&apos; to accept and complete this opportunity.</div>
3939
}
4040

4141
{
42-
props.copilotApplication.existingMembership
42+
props.copilotApplication.existingMembership
4343
&& ['observer', 'customer'].includes(props.copilotApplication.existingMembership.role)
44-
&& <div>Click &apos;Confirm&apos; to accept by updating project role to &apos;Copilot&apos; and complete this opportunity</div>
44+
&& (
45+
<div>
46+
Click &apos;Confirm&apos; to accept by updating project role to &apos;Copilot&apos;
47+
and complete this opportunity
48+
</div>
49+
)
4550
}
4651
</div>
4752
</div>

0 commit comments

Comments
 (0)