Skip to content

Commit

Permalink
Merge pull request #293 from strideynet/kev-fix-info-pages-dont-load
Browse files Browse the repository at this point in the history
Fix info pages don't load
  • Loading branch information
KevSlashNull authored Nov 25, 2024
2 parents 2e8d7bd + 3e45a8e commit 1e6e96a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/info/src/routes/[page=valid_doc_route]/+page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const load = (async ({ parent, params, url }) => {

const { feeds, featuredFeeds } = await parent();

const content = getPageDocument(pageName, preview, token);
const content = await getPageDocument(pageName, preview, token);

return { content, feeds: { feeds, featured: featuredFeeds } };
}) satisfies PageLoad;

0 comments on commit 1e6e96a

Please sign in to comment.