From 97bd6162c5778f052329a9c1a39fe2c5c6895be1 Mon Sep 17 00:00:00 2001 From: giles Date: Wed, 18 Feb 2026 18:48:24 +0000 Subject: [PATCH] Fix market nav link: point to coop.rose-ash.com/market/ not market subdomain The market menu item in the top bar should link to the blog page at coop_url('/market/'), not to market_url('/') which goes to the market subdomain. Reverts the incorrect 'market' addition to _app_slugs. Co-Authored-By: Claude Opus 4.6 --- browser/templates/_types/menu_items/_nav_oob.html | 2 +- browser/templates/_types/root/_nav.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/browser/templates/_types/menu_items/_nav_oob.html b/browser/templates/_types/menu_items/_nav_oob.html index f3ef989..3dfe411 100644 --- a/browser/templates/_types/menu_items/_nav_oob.html +++ b/browser/templates/_types/menu_items/_nav_oob.html @@ -1,4 +1,4 @@ -{% set _app_slugs = {'market': market_url('/'), 'cart': cart_url('/')} %} +{% set _app_slugs = {'cart': cart_url('/')} %}