Can't update a row (typescript)

i do:

    const { data: updateData, error: updateError } = await supabase
      .from('draft')
      .update(get().getValues(uuid))
      .eq('uuid', uuid)
      .select()

where getValues() returns an object.
AFAIK having .select() chained at the end should return the updated row but that or .select('*') both only return an empty array.

i don't get any error message, but also the row doesn't update.
Was this page helpful?