From bb9f3040df0043f758729b20dfdd2db9913a271b Mon Sep 17 00:00:00 2001 From: Benji Franck Date: Mon, 30 Mar 2026 16:35:52 -0600 Subject: [PATCH] fix(#3511): use correct v2 Docs URL for migration guide --- .../version-language-switcher/VersionUpdateNotification.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/version-language-switcher/VersionUpdateNotification.tsx b/src/components/version-language-switcher/VersionUpdateNotification.tsx index f210364b2..af788cfaa 100644 --- a/src/components/version-language-switcher/VersionUpdateNotification.tsx +++ b/src/components/version-language-switcher/VersionUpdateNotification.tsx @@ -6,7 +6,7 @@ import { getV2Link } from "../../utils"; export function VersionUpdateNotification() { const { isDismissed, dismiss, newLinkRef } = useVersionUpdateNotification(); - const v2UpgradeLink = getV2Link("/upgrade-guide"); + const v2UpgradeLink = getV2Link("/get-started/migration-guide"); useEffect(() => { const el = document.querySelector("goa-notification");