diff --git a/src/routes/CreateNewTeam/components/SubmitContainer/index.jsx b/src/routes/CreateNewTeam/components/SubmitContainer/index.jsx index 327491f..934275b 100644 --- a/src/routes/CreateNewTeam/components/SubmitContainer/index.jsx +++ b/src/routes/CreateNewTeam/components/SubmitContainer/index.jsx @@ -89,11 +89,10 @@ function SubmitContainer({ }; const assembleTeam = (formData) => { - const teamObject = _.pick(formData, [ - "teamName", - "teamDescription", - "refCode", - ]); + const teamObject = { + intakeSource: "taasAppIntake", + ..._.pick(formData, ["teamName", "teamDescription", "refCode"]), + }; const positions = []; for (let key of Object.keys(formData)) {