From f4866acc8750fdfbb9c6c02358fe010d76cfcba2 Mon Sep 17 00:00:00 2001 From: Elijah Date: Fri, 16 Aug 2024 15:30:45 +0000 Subject: [PATCH] update deprecation warning --- reflex/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/reflex/__init__.py b/reflex/__init__.py index 99fc65d643..a4f6dad333 100644 --- a/reflex/__init__.py +++ b/reflex/__init__.py @@ -353,12 +353,13 @@ def __getattr__(name): if name == "chakra": from reflex.utils import console - # TODO: rephrase message console.deprecate( "rx.chakra", - reason="its being moved to a different project", + reason="and moved to a separate package. " + "To continue using Chakra UI components, install the `reflex-chakra` package via `pip install " + "reflex-chakra`.", deprecation_version="0.6.0", - removal_version="0.6.0", + removal_version="0.7.0", dedupe=True, ) import reflex_chakra as rc