Zach Blume
Zach Blume
I eventually found a workaround in a related thread using supabase.realtime.setAuth: ``` const supabase = createClient( process.env.NEXT_PUBLIC_SUPABASE_URL, process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY, { global: { headers: { Authorization: `Bearer ${supabaseAccessToken}` }, }, // realtime:...
To summarize: - DELETE broadcasting in violation of RLS policy, - Supabase js client authorization header is not passed to realtime module as one would expect, - current documentation to...
> das-monki Thanks for the pointer to `raise log`. Do you know where Supabase points the pl/sql native logging by default? Regular postgres logging?
sweep.dev has a really nice getting started workflow: - Authorize sweep.dev access to your github repos - Add a "sweep" label to any existing repo - Title any new issue...
Docker-compose comes with docker, can spawn two sibling containers that share networking, allow service-to-service communication, would avoid docker-in-docker, and allows for a single command setup by defining a docker-compose.yml and...
E.g., Supabase's local development flow worked this way at first: [https://supabase.com/docs/guides/self-hosting/docker](https://supabase.com/docs/guides/self-hosting/docker)
``` curl -s https://example.com/path/to/docker-compose.yml | docker-compose -f - up ``` But it may easier to offer config with a cloned repo, e.g. the Supabase example above. I think there's strong...
Yup, tried it again right now, upgraded Chrome, same thing, every time after page load or refresh. Here is another screen recording with the react tools on showing the render...
I checked out the current version [2e8c479ef7e4071bc903bdf882334488b50f2910](https://github.com/MoveOnOrg/Spoke/commit/2e8c479ef7e4071bc903bdf882334488b50f2910) yesterday. /demo/dyn is not rendering anything as you said and there are console errors. I inserted console.debugs through the code of /syc/components/assignmenttexter/controls and...
< AssignmentTexterContactControls > expects a prop passed from parent as props.enabledSideboxes, but it's undefined In these current demos, the only parent components of Controls is AssignmentTexterContactControls,DemoTexterTest,main,TexterDashboard, and the theme+context+app+router+apollo providers....