Skip to content

Commit bb10a8f

Browse files
committed
fix: qa feedbacks
1 parent 1bc239f commit bb10a8f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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/apps/copilots/src/pages/copilot-request-form/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ const CopilotRequestForm: FC<{}> = () => {
221221
setPaymentType('')
222222
// Added a small timeout for the toast to be visible properly to the users
223223
setTimeout(() => {
224-
navigate('/requests')
224+
navigate('/copilots/requests')
225225
}, 1000)
226226
})
227227
.catch(e => {

0 commit comments

Comments
 (0)