-- Fix anchor-only navigation links to include leading slash
-- so they work from CMS/blog pages (not just the homepage).
-- Scoped to default nav items only to avoid touching any
-- dealer-customized links that happen to use the same anchor.
UPDATE "NavigationItem"
SET "externalUrl" = '/#contact-us'
WHERE "externalUrl" = '#contact-us'
  AND "isDefault" = true
  AND "defaultKey" = 'about.contact';

UPDATE "NavigationItem"
SET "externalUrl" = '/#dealer-info'
WHERE "externalUrl" = '#dealer-info'
  AND "isDefault" = true
  AND "defaultKey" = 'about';
