How can I update data in JSONB from a textarea inp...
# help
j
How can I update data in JSONB from a textarea input (The stringify version of that same JSONB)... Everytime I try, Nothing is saved...
export async function updateThisSetting(ligne){ const { data, error } = await supabase .from("settings") .update({"value": ligne.value}) .eq('key', ligne.key) console.log(error) return {data, error} }
I call it from
async function modifier(elem){ const {data, error} = await updateThisSetting(elem) }
And elem/ligne contains a key and a value field