Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions reflex/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from reflex_core.event import EventType

DECORATED_PAGES: dict[str, list] = defaultdict(list)
DECORATED_PAGES: dict[str, list[tuple[Callable, dict[str, Any]]]] = defaultdict(list)


def page(
Expand Down Expand Up @@ -48,7 +48,7 @@ def page(
from reflex_core.config import get_config

def decorator(render_fn: Callable):
kwargs = {}
kwargs: dict[str, Any] = {}
if route:
kwargs["route"] = route
if title:
Expand Down