Skip to content

Commit a2640b9

Browse files
committed
patch window reload
1 parent 1609f6f commit a2640b9

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

bun.lockb

3.05 KB
Binary file not shown.

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@
1818
"website",
1919
"og",
2020
"packages/*"
21-
]
21+
],
22+
"patchedDependencies": {
23+
"@remix-run/[email protected]": "patches/@remix-run%[email protected]"
24+
}
2225
}

patches/@remix-run%[email protected]

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
diff --git a/dist/browser.js b/dist/browser.js
2+
index 0a3af6ef046f0def02e8b262042328e4e117e3c3..b0b77b94983b9288d7d8451270c5105a844bb19d 100644
3+
--- a/dist/browser.js
4+
+++ b/dist/browser.js
5+
@@ -83,7 +83,7 @@ function RemixBrowser(_props) {
6+
if (initialPathname !== hydratedPathname && !window.__remixContext.isSpaMode) {
7+
let errorMsg = `Initial URL (${initialPathname}) does not match URL at time of hydration ` + `(${hydratedPathname}), reloading page...`;
8+
console.error(errorMsg);
9+
- window.location.reload();
10+
+ // window.location.reload();
11+
// Get out of here so the reload can happen - don't create the router
12+
// since it'll then kick off unnecessary route.lazy() loads
13+
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null);
14+
diff --git a/dist/esm/browser.js b/dist/esm/browser.js
15+
index 76196947af506a323934dbcacb8685d8a883f247..5b8c2975c6cb65745bf3daffd662c6e12bc19b12 100644
16+
--- a/dist/esm/browser.js
17+
+++ b/dist/esm/browser.js
18+
@@ -123,7 +123,7 @@ function RemixBrowser(_props) {
19+
if (initialPathname !== hydratedPathname && !window.__remixContext.isSpaMode) {
20+
let errorMsg = `Initial URL (${initialPathname}) does not match URL at time of hydration ` + `(${hydratedPathname}), reloading page...`;
21+
console.error(errorMsg);
22+
- window.location.reload();
23+
+ // window.location.reload();
24+
// Get out of here so the reload can happen - don't create the router
25+
// since it'll then kick off unnecessary route.lazy() loads
26+
return /*#__PURE__*/React.createElement(React.Fragment, null);

0 commit comments

Comments
 (0)