From 85047f2077d16f610d47e3a4e26077b6adb43b6f Mon Sep 17 00:00:00 2001 From: Farhan Ali Raza Date: Tue, 2 Jun 2026 23:44:55 +0500 Subject: [PATCH] fix: enable Radix Themes explicitly via RadixThemesPlugin Reflex 0.9.0 deprecated implicit Radix Themes enablement. The app uses rx.theme(...), which auto-loaded the Radix bundle and emitted a DeprecationWarning that fails the templates check-export CI. Register rx.plugins.RadixThemesPlugin() to opt in explicitly; same behavior, no warning. Co-Authored-By: Claude Opus 4.8 (1M context) --- rxconfig.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rxconfig.py b/rxconfig.py index 9b31082..5d5ecd4 100644 --- a/rxconfig.py +++ b/rxconfig.py @@ -8,6 +8,7 @@ deployment_name="deployment", plugins=[ rx.plugins.SitemapPlugin(), + rx.plugins.RadixThemesPlugin(), rx.plugins.TailwindV3Plugin( { "darkMode": "class",