File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
pages/copilot-request-form Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ export interface CopilotRequest {
10
10
numHoursPerWeek : number ,
11
11
numWeeks : number ,
12
12
overview : string ,
13
- paymentType : string ,
13
+ paymentType : string ,
14
14
requiresCommunicatn : 'yes' | 'no' ,
15
15
skills : UserSkill [ ] ,
16
16
startDate : Date ,
17
17
tzRestrictions : 'yes' | 'no' ,
18
- }
18
+ }
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ const CopilotRequestForm: FC<{}> = () => {
172
172
if ( isEmpty ( updatedFormErrors ) ) {
173
173
saveCopilotRequest ( formValues )
174
174
. then ( ( ) => {
175
- toast . success ( 'Subscription updated successfully' )
175
+ toast . success ( 'Copilot request sent successfully' )
176
176
// Reset form after successful submission
177
177
setFormValues ( { } )
178
178
setIsFormChanged ( false )
@@ -181,7 +181,7 @@ const CopilotRequestForm: FC<{}> = () => {
181
181
setPaymentType ( '' )
182
182
} )
183
183
. catch ( ( ) => {
184
- toast . error ( 'Error updating subscription ' )
184
+ toast . error ( 'Error sending copilot request ' )
185
185
} )
186
186
}
187
187
You can’t perform that action at this time.
0 commit comments