You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2025. It is now read-only.
This issue tracks a follow-up improvement suggested during PR #187 review.
Currently, the ClerkProvider in src/App.tsx uses a static browser.prefersDarkMode() call to determine the appearance theme. This means the theme won't update if the user changes their OS theme while the app is running.
Task
Replace the static browser.prefersDarkMode() call with MUI's useMediaQuery hook to make the theme reactive to OS theme changes.