iamshaunjp / Supabase-Tutorial-for-Beginners

All the course files for the Supabase Tutorial playlist on the Net Ninja YouTube Channel & on Net Ninja Pro
84 stars 136 forks source link

Table name is smoothies not recipes #12

Open NuriaAgbasi opened 2 months ago

NuriaAgbasi commented 2 months ago

In Create.JS in lesson 4, the table name says 'recipes' not 'smoothies'

What it says in the GitHub file const { data, error } = await supabase .from('recipes') .insert([{ title, method, rating }])

What it is meant to be : const { data, error } = await supabase .from('smoothies') .insert([{ title, method, rating }])