Skip to content

Commit

Permalink
Merge pull request #195 from ekzhang/patch-1
Browse files Browse the repository at this point in the history
Fix rendering of components pages
  • Loading branch information
mhkeller committed May 7, 2024
2 parents ea0dc5d + bdd01ca commit 9f7c43d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/routes/components/[slug]/+page.svelte
Expand Up @@ -18,6 +18,7 @@
/** @type {import('./$types').PageData} */
export let data;
let {slug, content, active} = data;
$: slug = data.slug;
$: content = data.content;
$: active = data.active;
Expand Down
1 change: 1 addition & 0 deletions src/routes/example-ssr/[slug]/+page.svelte
Expand Up @@ -18,6 +18,7 @@
/** @type {import('./$types').PageData} */
export let data;
let {slug, content, active} = data;
$: slug = data.slug;
$: content = data.content;
$: active = data.active;
Expand Down
1 change: 1 addition & 0 deletions src/routes/example/[slug]/+page.svelte
Expand Up @@ -18,6 +18,7 @@
/** @type {import('./$types').PageData} */
export let data;
let {slug, content, active} = data;
$: slug = data.slug;
$: content = data.content;
$: active = data.active;
Expand Down

0 comments on commit 9f7c43d

Please sign in to comment.