Skip to content

Commit

Permalink
update deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ElijahAhianyo committed Aug 16, 2024
1 parent 224f734 commit f4866ac
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions reflex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f4866ac

Please sign in to comment.