Skip to content

Commit 343ff82

Browse files
authored
Merge pull request #1136 from topcoder-platform/pm-1448_1
fix(PM-1448, PM-1322, PM-1468): QA feedbacks
2 parents 80720e7 + e929c29 commit 343ff82

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/apps/copilots/src/pages/copilot-opportunity-details/apply-opportunity-modal/ApplyOpportunityModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
) : (

src/libs/shared/lib/components/profile-picture/ProfilePicture.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 && (

0 commit comments

Comments
 (0)