Replace color wheel in Lighting component due to hydration issues, adjust update debounce to account for increased serverside rate limits (10 requests/2 seconds -> 25 requests/2 seconds)

This commit is contained in:
2025-10-08 10:56:42 -04:00
parent 2b7a3da085
commit ef4c80450a
2 changed files with 121 additions and 78 deletions

View File

@@ -40,7 +40,7 @@ export default function Root({ child, user = undefined }) {
{child == "Memes" && <Memes client:only="react" />}
{child == "qs2.MediaRequestForm" && <MediaRequestForm client:only="react" />}
{child == "qs2.RequestManagement" && <RequestManagement client:only="react" />}
{child == "Lighting" && <Lighting client:only="react" />}
{child == "Lighting" && <Lighting key={window.location.pathname + Math.random()} client:only="react" />}
</JoyUIRootIsland>
</PrimeReactProvider>
);