File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
apps/copilots/src/pages/copilot-opportunity-details/apply-opportunity-modal
libs/shared/lib/components/profile-picture Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ workflows:
222
222
- LVT-256
223
223
- CORE-635
224
224
- feat/system-admin
225
- - pm-1322
225
+ - pm-1448_1
226
226
227
227
- deployQa :
228
228
context : org-global
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const ApplyOpportunityModal: FC<ApplyOpportunityModalProps> = props => {
50
50
buttons = {
51
51
! success ? (
52
52
< >
53
- < Button disabled = { ! notes } primary onClick = { onApply } label = 'Apply' />
53
+ < Button disabled = { ! notes ?. trim ( ) } primary onClick = { onApply } label = 'Apply' />
54
54
< Button secondary onClick = { props . onClose } label = 'Cancel' />
55
55
</ >
56
56
) : (
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ const ProfilePicture: FC<ProfilePictureProps> = props => {
29
29
>
30
30
{ ! loaded && (
31
31
< span className = { styles . profileInitials } >
32
- { props . member . firstName . slice ( 0 , 1 ) }
33
- { props . member . lastName . slice ( 0 , 1 ) }
32
+ { props . member ? .firstName ? .slice ( 0 , 1 ) }
33
+ { props . member ? .lastName ? .slice ( 0 , 1 ) }
34
34
</ span >
35
35
) }
36
36
{ props . member . photoURL && ! error && (
You can’t perform that action at this time.
0 commit comments