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:
222222 - LVT-256
223223 - CORE-635
224224 - feat/system-admin
225- - pm-1322
225+ - pm-1448_1
226226
227227 - deployQa :
228228 context : org-global
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const ApplyOpportunityModal: FC<ApplyOpportunityModalProps> = props => {
5050 buttons = {
5151 ! success ? (
5252 < >
53- < Button disabled = { ! notes } primary onClick = { onApply } label = 'Apply' />
53+ < Button disabled = { ! notes ?. trim ( ) } primary onClick = { onApply } label = 'Apply' />
5454 < Button secondary onClick = { props . onClose } label = 'Cancel' />
5555 </ >
5656 ) : (
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ const ProfilePicture: FC<ProfilePictureProps> = props => {
2929 >
3030 { ! loaded && (
3131 < 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 ) }
3434 </ span >
3535 ) }
3636 { props . member . photoURL && ! error && (
You can’t perform that action at this time.
0 commit comments