@sveltejs/kit 1.24.0 → 1.24.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/runtime/client/client.js +3 -0
- package/src/version.js +1 -1
package/package.json
CHANGED
|
@@ -2035,6 +2035,9 @@ function create_navigation(current, intent, url, type) {
|
|
|
2035
2035
|
reject = r;
|
|
2036
2036
|
});
|
|
2037
2037
|
|
|
2038
|
+
// Handle any errors off-chain so that it doesn't show up as an unhandled rejection
|
|
2039
|
+
complete.catch(() => {});
|
|
2040
|
+
|
|
2038
2041
|
/** @type {import('@sveltejs/kit').Navigation} */
|
|
2039
2042
|
const navigation = {
|
|
2040
2043
|
from: {
|
package/src/version.js
CHANGED