We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7e5299 commit 7f6f141Copy full SHA for 7f6f141
1 file changed
src/routes/blog/[slug]/+page.ts
@@ -11,7 +11,7 @@ export const load: PageLoad = async ({ params, fetch }) => {
11
.then((response) => response.text() as Promise<string>)
12
.then((x) => {
13
if (x) {
14
- let { meta, post, first_image } = parsePostData(x, web_name);
+ const { meta, post, first_image } = parsePostData(x, web_name);
15
return { post, meta, first_image };
16
}
17
return error(404, `Blog Post Not found`);
0 commit comments