Skip to content

Commit 83b322a

Browse files
authored
Merge pull request #3 from masenf/dynamic-routes-redir
Handle redirect when dynamic routes are used
2 parents 018cf5d + 3b579d2 commit 83b322a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

custom_components/reflex_local_auth/login.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def redir(self) -> rx.event.EventSpec | None:
5353
return LoginState.redir() # type: ignore
5454
page = self.router.page.path
5555
if not self.is_authenticated and page != routes.LOGIN_ROUTE:
56-
self.redirect_to = page
56+
self.redirect_to = self.router.page.raw_path
5757
return rx.redirect(routes.LOGIN_ROUTE)
5858
elif page == routes.LOGIN_ROUTE:
5959
return rx.redirect(self.redirect_to or "/")

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "reflex-local-auth"
10-
version = "0.1.0"
10+
version = "0.1.1"
1111
description = "Local DB user authentication for Reflex apps"
1212
readme = "README.md"
1313
license = { text = "Apache-2.0" }

0 commit comments

Comments
 (0)