Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dummdidumm committed Jan 5, 2024
1 parent 47397d1 commit 9393f5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/kit/src/runtime/client/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { create_client } from './client.js';
/**
* @param {import('./types.js').SvelteKitApp} app
* @param {HTMLElement} target
* @param {Parameters<import('./client.js')._hydrate>[0]} [hydrate]
* @param {any} [hydrate] (see _hydrate in client.js for the type)
*/
export function start(app, target, hydrate) {
if (DEV && target === document.body) {
Expand Down
2 changes: 1 addition & 1 deletion packages/kit/src/runtime/client/start_embedded.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const client_url = match[1];
/**
* @param {import('./types.js').SvelteKitApp} app
* @param {HTMLElement} target
* @param {Parameters<import('./client.js')._hydrate>[0]} [hydrate]
* @param {any} [hydrate] (see _hydrate in client.js for the type)
*/
export async function start(app, target, hydrate) {
if (DEV && target === document.body) {
Expand Down

0 comments on commit 9393f5d

Please sign in to comment.