Raphaël Moreau
Raphaël Moreau
So with all you share: # Supabase RLS Policy functions and Postgres transaction configuration association [source](https://github.com/supabase/postgres/blob/cce9046f1f1b463b9a4ac2fb6633d55ed29ce7ac/migrations/db/init-scripts/00000000000001-auth-schema.sql) | Supabase's RLS Policy functions | PgTransaction config to set | Description | |---|---|---|...
> @rphlmr Thank you for your research and compiling this for us! I have a couple follow up questions mostly about the best way to implement this in Drizzle: >...
> @Angelelz Any news related to the PR? We are working on it ;)
Hello there 👋 You can test (some requirements) or look at the draft implementation here: https://github.com/rphlmr/drizzle-supabase-rls A before / after here: https://github.com/rphlmr/drizzle-supabase-rls/blob/main/src/index.ts
Hello, Is it not because, with Tailwind, `md` takes priority? With ```jsx This is my Heading ``` text is 9xl when screen < `md` and still `text-4xl` when > `md`...
I hope we can keep `ResponseStub` everywhere because it helps to build simple things like that: https://supabase.com/docs/guides/auth/server-side/creating-a-client?queryGroups=framework&framework=remix&queryGroups=environment&environment=remix-action#creating-a-client ```ts export function getSupabaseServerClient( request: Request, response: ResponseStub, ) { const cookies =...
The reason is `single-fetch.d.ts`. ```ts export function useLoaderData(): T extends LoaderFunction_SingleFetch ? SingleFetchSerialize_V2 : never; export function useActionData(): T extends ActionFunction_SingleFetch ? SingleFetchSerialize_V2 : never; type LoaderFunction_SingleFetch = ( args:...
Possible fix: Add a `ClientLoaderFunctionArgs_SingleFetch` to use instead of `ClientLoaderFunctionArgs`? ```ts type ClientLoaderFunctionArgs_SingleFetch = Omit< ClientLoaderFunctionArgs, "serverLoader" > & { serverLoader: () => ReturnType; }; type ClientLoaderFunction_SingleFetch = (( args:...
Ok I transform it to Draft. Just taking some times to make unit test and handle complex schema with nested object (sort of retro engineering from what you made for...
Any suggestion is welcome ;) I continue to add some unit test, it will already be done :D