```ts async function updateUserFinances(currentUse...
# help
a
Copy code
ts
async function updateUserFinances(currentUserID: string, updatedExpenses: Object) {
  const { data, error } = await supabase
    .from("UserFinanceData")
    .update({ Expenses, updatedExpenses: JSON });
    .match({ UserID: currentUserID} )
n
Hello @Aghilan! This thread has been automatically created from your message in #843999948717555735 a ``few seconds ago``. Pinging @User so that they see this as well! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ... menu) and select Leave Thread to unsubscribe from future updates. Want to change the title? Use the
/title
command! We have solved your problem? Click the button below to archive it.
a
Im trying to update table and change the JSON currently in Expenses with another JSON, I only want to update the row which belongs to a specific user with the id of currentUserID.
n
🆕 Problem with Supabase Query