Skip to content

Commit 09249e6

Browse files
committed
fix: don't show applied on for completed project
1 parent 8507660 commit 09249e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/routes/copilotOpportunity/assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ module.exports = [
114114
transaction: t,
115115
})
116116

117-
console.log(invite, 'invite askjdhasd')
117+
console.log(invite.toJSON(), 'invite askjdhasd')
118118

119119
util.sendResourceToKafkaBus(
120120
req,

src/routes/projectMemberInvites/create.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ module.exports = [
406406
req, invite.emails, inviteUserIds, invites, data, failed, members, inviteUsers))
407407
.then((values) => {
408408
values.forEach((v) => {
409-
console.log(v, 'v checking')
409+
console.log(v.toJSON(), 'v checking')
410410
// emit the event
411411
util.sendResourceToKafkaBus(
412412
req,

0 commit comments

Comments
 (0)