Skip to content

Commit

Permalink
fix wrong values to props (#1079)
Browse files Browse the repository at this point in the history
  • Loading branch information
adhami3310 authored and Tom Gotsman committed Nov 25, 2024
1 parent b8d55db commit 5417aab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/vars/base_vars.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class TickerState(rx.State):
def ticker_example():
return rx.center(
rx.vstack(
rx.heading(TickerState.ticker, size="lg"),
rx.heading(TickerState.ticker, size="3"),
rx.text(f"Current Price: {TickerState.price}", font_size="md"),
rx.text("Change: 4%", color="green"),
),
Expand Down Expand Up @@ -67,7 +67,7 @@ from .state import TickerState
def ticker_example():
return rx.center(
rx.vstack(
rx.heading(TickerState.ticker, size="lg"),
rx.heading(TickerState.ticker, size="3"),
rx.text(f"Current Price: {TickerState.price}", font_size="md"),
rx.text("Change: 4%", color="green"),
),
Expand Down
2 changes: 1 addition & 1 deletion pcweb/pages/hosting_countdown/waitlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def waitlist():
rx.form(
rx.cond(
WaitlistState.success,
rx.badge("Thank you for joining the waitlist!", color_scheme="green", size="5"),
rx.badge("Thank you for joining the waitlist!", color_scheme="green", size="3"),
rx.vstack(
rx.hstack(
rx.el.input(
Expand Down

0 comments on commit 5417aab

Please sign in to comment.