Skip to content

Commit f7d0990

Browse files
committed
fix: make notes optional
1 parent 51c50d8 commit f7d0990

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ workflows:
149149
context : org-global
150150
filters:
151151
branches:
152-
only: ['develop', 'migration-setup']
152+
only: ['develop', 'migration-setup', 'pm-578_1']
153153
- deployProd:
154154
context : org-global
155155
filters:

src/routes/copilotOpportunityApply/create.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { COPILOT_OPPORTUNITY_STATUS } from '../../constants';
99

1010
const applyCopilotRequestValidations = {
1111
body: Joi.object().keys({
12-
notes: Joi.string(),
12+
notes: Joi.string().optional(),
1313
}),
1414
};
1515

0 commit comments

Comments
 (0)