Skip to content

Commit

Permalink
--wip-- [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-h1 committed Dec 11, 2024
1 parent b5d790c commit 3e91781
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Spacer from '@frontend/components/Spacer';
import Text from '@frontend/components/Text';
import postService from '@frontend/services/postService';
import { Metadata } from 'next';
import { Suspense } from 'react';
import PostsClient from './page.client';

export const revalidate = 1800;
Expand All @@ -30,7 +31,9 @@ export default async function BlogPage() {
</Text>
</Box>
<Spacer height="xxxl" />
<PostsClient posts={posts} />
<Suspense>
<PostsClient posts={posts} />
</Suspense>
</Page>
);
}

0 comments on commit 3e91781

Please sign in to comment.