diff --git a/src/server/routes/thesis.ts b/src/server/routes/thesis.ts index c97d59b..70c7b95 100644 --- a/src/server/routes/thesis.ts +++ b/src/server/routes/thesis.ts @@ -50,7 +50,6 @@ const fetchThesisById = async (id: string, user: UserType) => { } const createThesis = async (thesisData: ThesisData, t: Transaction) => { - console.log('thesisData', thesisData) const createdThesis = await Thesis.create(thesisData, { transaction: t }) const extUsers = await getAndCreateExtUsers(thesisData, t)