Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | import { g as getContext, c as create_ssr_component, a as subscribe, e as escape } from "../../chunks/ssr.js"; import "../../chunks/exports.js"; function get(key, parse = JSON.parse) { try { return parse(sessionStorage[key]); } catch { } } const SNAPSHOT_KEY = "sveltekit:snapshot"; const SCROLL_KEY = "sveltekit:scroll"; get(SCROLL_KEY) ?? {}; get(SNAPSHOT_KEY) ?? {}; const getStores = () => { const stores = getContext("__svelte__"); return { /** @type {typeof page} */ page: { subscribe: stores.page.subscribe }, /** @type {typeof navigating} */ navigating: { subscribe: stores.navigating.subscribe }, /** @type {typeof updated} */ updated: stores.updated }; }; const page = { subscribe(fn) { const store = getStores().page; return store.subscribe(fn); } }; const Error$1 = create_ssr_component(($$result, $$props, $$bindings, slots) => { let $page, $$unsubscribe_page; $$unsubscribe_page = subscribe(page, (value) => $page = value); $$unsubscribe_page(); return `<h1>${escape($page.status)}</h1> <p>${escape($page.error?.message)}</p>`; }); export { Error$1 as default }; |