You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/svelte.dev/content/docs/kit/98-reference/[email protected]
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -976,7 +976,7 @@ type Handle = (input: {
976
976
977
977
## HandleClientError
978
978
979
-
The client-side [`handleError`](https://svelte.dev/docs/kit/hooks#shared-hooks-handleError) hook runs when an unexpected error is thrown while navigating.
979
+
The client-side [`handleError`](https://svelte.dev/docs/kit/hooks#Shared-hooks-handleError) hook runs when an unexpected error is thrown while navigating.
980
980
981
981
If an unexpected error is thrown during loading or the following render, this function will be called with the error and the event.
982
982
Make sure that this function _never_ throws an error.
@@ -996,7 +996,7 @@ type HandleClientError = (input: {
996
996
997
997
## HandleFetch
998
998
999
-
The [`handleFetch`](https://svelte.dev/docs/kit/hooks#server-hooks-handleFetch) hook allows you to modify (or replace) a `fetch` request that happens inside a `load` function that runs on the server (or during pre-rendering)
999
+
The [`handleFetch`](https://svelte.dev/docs/kit/hooks#Server-hooks-handleFetch) hook allows you to modify (or replace) a `fetch` request that happens inside a `load` function that runs on the server (or during pre-rendering)
1000
1000
1001
1001
<divclass="ts-block">
1002
1002
@@ -1012,7 +1012,7 @@ type HandleFetch = (input: {
1012
1012
1013
1013
## HandleServerError
1014
1014
1015
-
The server-side [`handleError`](https://svelte.dev/docs/kit/hooks#shared-hooks-handleError) hook runs when an unexpected error is thrown while responding to a request.
1015
+
The server-side [`handleError`](https://svelte.dev/docs/kit/hooks#Shared-hooks-handleError) hook runs when an unexpected error is thrown while responding to a request.
1016
1016
1017
1017
If an unexpected error is thrown during loading or rendering, this function will be called with the error and the event.
1018
1018
Make sure that this function _never_ throws an error.
Copy file name to clipboardExpand all lines: apps/svelte.dev/content/docs/kit/98-reference/54-types.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -213,7 +213,7 @@ interface PageState {}
213
213
214
214
## Platform
215
215
216
-
If your adapter provides [platform-specific context](https://svelte.dev/docs/kit/adapters#platform-specific-context) via `event.platform`, you can specify it here.
216
+
If your adapter provides [platform-specific context](https://svelte.dev/docs/kit/adapters#Platform-specific-context) via `event.platform`, you can specify it here.
0 commit comments