Replies: 1 comment 1 reply
-
|
The 1. Verify your Reflex version pip show reflexMake sure you are on the latest stable release. The badge removal config was solidified in recent versions. 2. Confirm your rxconfig.py syntax Make sure the config looks exactly like this: import reflex as rx
config = rx.Config(
app_name="your_app",
show_reflex_badge=False,
)The key thing is that 3. Clear the build cache Sometimes the old frontend build is cached and the config change does not take effect: reflex export --no-zip
# or for dev:
rm -rf .web
reflex runThe 4. Check for enterprise components Even if you do not think you are using enterprise components, check your imports. Some components were moved between the open-source and enterprise packages across versions. Run: grep -r "reflex_enterprise\|reflex.enterprise" your_app/If nothing shows up, you are clean. If none of the above works, it might be a regression — worth filing a bug with your exact Reflex version and a minimal |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi
we are NOT using any of the enterprise components and when deploying the application the "Built with reflex" Button appears.
As per the documentation https://reflex.dev/docs/enterprise/built-with-reflex/ - it states that
"The "Built with Reflex" badge appears in the bottom right corner of apps using reflex-enterprise components."
out rxconfig has show_reflex_badge=False,
Any advise please.
Thank you for a great open source product.
Beta Was this translation helpful? Give feedback.
All reactions