File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/apps/copilots/src/pages
copilot-opportunity-details/apply-opportunity-modal Expand file tree Collapse file tree 2 files changed +2
-2
lines changed 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 @@ -221,7 +221,7 @@ const CopilotRequestForm: FC<{}> = () => {
221
221
setPaymentType ( '' )
222
222
// Added a small timeout for the toast to be visible properly to the users
223
223
setTimeout ( ( ) => {
224
- navigate ( '/requests' )
224
+ navigate ( '/copilots/ requests' )
225
225
} , 1000 )
226
226
} )
227
227
. catch ( e => {
You can’t perform that action at this time.
0 commit comments