diff options
| author | Omni Worker <bot@omni.agent> | 2025-11-22 05:35:45 -0500 |
|---|---|---|
| committer | Omni Worker <bot@omni.agent> | 2025-11-22 05:35:45 -0500 |
| commit | 47e522081531a73c9f4f09e00f08add8ba427653 (patch) | |
| tree | 4f7079664e8abc5d414bf75108264f878ebbf618 | |
| parent | 001821558bdee18d50a189cc21b12a2d5f2d8fea (diff) | |
Fix syntax error in UI.py (missing closing parenthesis)
| -rw-r--r-- | Biz/PodcastItLater/UI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/PodcastItLater/UI.py b/Biz/PodcastItLater/UI.py index 1fd3276..94c5b81 100644 --- a/Biz/PodcastItLater/UI.py +++ b/Biz/PodcastItLater/UI.py @@ -540,7 +540,7 @@ class PricingPage(Component[AnyChildren, PricingPageAttrs]): classes=["row"], ), classes=["container", "py-3"], - ), + )), user=user, current_page="pricing", page_title="Pricing - PodcastItLater", |
