Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Mar 8, 2024
1 parent f6a46f3 commit b7f3f59
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/jobs/src/transactions/sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ client.defineJob({

// NOTE: We will get all the transactions at once for each account so
// we need to guard against massive payloads
const { error, data: transactionsData } = await supabase
.from("decrypted_transactions")
.upsert(transactions, {
onConflict: "internal_id",
ignoreDuplicates: true,
})
.select("*, name:decrypted_name");
// const { error, data: transactionsData } = await supabase
// .from("decrypted_transactions")
// .upsert(transactions, {
// onConflict: "internal_id",
// ignoreDuplicates: true,
// })
// .select("*, name:decrypted_name");
});
},
});

0 comments on commit b7f3f59

Please sign in to comment.