Skip to content

Commit

Permalink
Fix log for remove opportunity in js sdk (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
danimhr authored Nov 1, 2024
1 parent 8fb79d5 commit 4511cd9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sdk/js/src/examples/simpleSearcherLimo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ class SimpleSearcherLimo {

// NOTE: Developers are responsible for implementing custom removal logic specific to their use case.
async removeOpportunitiesHandler(opportunityDelete: OpportunityDelete) {
console.log(`Opportunities ${opportunityDelete} don't exist anymore`);
console.log(
`Opportunities ${JSON.stringify(opportunityDelete)} don't exist anymore`
);
}

async start() {
Expand Down

0 comments on commit 4511cd9

Please sign in to comment.