From 52fffe6922182883347708da90c46ab686330a28 Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Sun, 13 Jul 2025 23:05:37 +0200 Subject: [PATCH 1/2] Hide support link in nav bar --- ui/src/components/NavigationBar.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ui/src/components/NavigationBar.tsx b/ui/src/components/NavigationBar.tsx index cb7e6bc..905e4db 100644 --- a/ui/src/components/NavigationBar.tsx +++ b/ui/src/components/NavigationBar.tsx @@ -1,6 +1,5 @@ import { twMerge } from "tailwind-merge"; import { - HelpCircleIcon, SendIcon, ChevronRightIcon, ConstructionIcon, @@ -332,7 +331,7 @@ export function MainNavigation({ isCollapsed }: { isCollapsed: boolean }) { isCollapsed ? "pl-2.5 pr-3" : "" )} > -
  • + {/*
  • -
  • + */}
  • Date: Sun, 13 Jul 2025 23:13:57 +0200 Subject: [PATCH 2/2] Update wrangler toml --- ui/wrangler.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ui/wrangler.toml b/ui/wrangler.toml index b28b567..47c3ef1 100644 --- a/ui/wrangler.toml +++ b/ui/wrangler.toml @@ -12,10 +12,8 @@ enabled = true [vars] PYTHON_VERSION = "3.11.5" -[env.production.vars] -PYTHON_VERSION = "3.11.5" - [env.production] route = { pattern = "app.xtablo.com", custom_domain = true } -[env.staging] \ No newline at end of file +[env.staging] +route = { pattern = "app-staging.xtablo.com", custom_domain = true } \ No newline at end of file