Hi
Couple of mistakes I have found in the in next-supabase-turbo/recipes/projects-data-model documentation.
For this step around line 885
references v1 getSupabaseServerComponentClient()
current:
const client = getSupabaseServerComponentClient();
const service = createProjectsService(client);
proposed:
const client = getSupabaseServerClient();
const service = createProjectsService(client);
Around line 2465 in the Creating the Dialog to Create a Project page code block.
Current:
references missing file ../_lib/schema/create-project-schema see: import { CreateProjectSchema } from '../_lib/schema/create-project-schema';
but does not give instructions for the code for this file.