Update home-page.tsx

This commit is contained in:
Henrik Larsson 2023-08-15 21:14:51 +02:00 committed by GitHub
parent 1bc7eade96
commit 22fbd1fb7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ interface IndexPageParams {
export default function HomePage({ data }: IndexPageParams) {
return (
<>
<DynamicContentManager content={data?.content} />;
<DynamicContentManager content={data?.content} />
</>
);
}