GabeDahl

Results 6 comments of GabeDahl

Try reducing the FPS by 10 until it runs.

This still occurs when the legend layout is vertical. http://jsfiddle.net/gabeybaby/8rm3uq9v/1/

There is a current discussion fielding new feature requests here: https://github.com/ahodges9/LedFx/issues/47 I'm not sure that's possible with the current configuration options. If I'm not mistaken, the current UDP configuration can...

@chriscarrollsmith I cloned your PR and removed all the async stuff from the home page (pricing page). So the root page.tsx is just: ``` export default function PricingPage() { return...

I ended up replacing the server-rendered component with a client component (I get the session, but that can be easily swapped for user): ``` 'use client' import { createClient }...

@dalkommatt You're right. SSR's browser client doesn't recognize server-side auth state changes. That's why I hacked together that ugly `useEffect` that fires whenever the pathname changes or whenever `supabase.auth.onAuthStateChange` fires...