Skip to content

Commit 7f6f141

Browse files
Hyeok KimHyeok Kim
authored andcommitted
dec
1 parent a7e5299 commit 7f6f141

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/blog/[slug]/+page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const load: PageLoad = async ({ params, fetch }) => {
1111
.then((response) => response.text() as Promise<string>)
1212
.then((x) => {
1313
if (x) {
14-
let { meta, post, first_image } = parsePostData(x, web_name);
14+
const { meta, post, first_image } = parsePostData(x, web_name);
1515
return { post, meta, first_image };
1616
}
1717
return error(404, `Blog Post Not found`);

0 commit comments

Comments
 (0)