diff --git a/contributors.yml b/contributors.yml index df521ac7f3..e6a0a4653e 100644 --- a/contributors.yml +++ b/contributors.yml @@ -346,6 +346,7 @@ - valerii15298 - ValiantCat - vdusart +- vezaynk - VictorElHajj - vijaypushkin - vikingviolinist diff --git a/packages/react-router/lib/dom/lib.tsx b/packages/react-router/lib/dom/lib.tsx index 50a456ef9f..de4259a784 100644 --- a/packages/react-router/lib/dom/lib.tsx +++ b/packages/react-router/lib/dom/lib.tsx @@ -2083,14 +2083,21 @@ export function useScrollRestoration({ } // try to scroll to the hash - if (location.hash) { - let el = document.getElementById( - decodeURIComponent(location.hash.slice(1)) - ); - if (el) { - el.scrollIntoView(); - return; + try { + if (location.hash) { + let el = document.getElementById( + decodeURIComponent(location.hash.slice(1)) + ); + if (el) { + el.scrollIntoView(); + return; + } } + } catch { + warning( + false, + `"${location.hash.slice(1)}" is not a decodable element ID. The view will not scroll to it.` + ); } // Don't reset if this navigation opted out