Removal of props for build to run

This commit is contained in:
Hollgy 2024-03-22 20:41:15 +01:00
parent 146518b94a
commit 6fcbb92691

View file

@ -23,7 +23,7 @@ export function PostSegment(props: { post: Post }): JSXElement {
<ReportButton />
</li>
<li>
<RemovePostButton post={props.post} />
<RemovePostButton />
</li>
</ul>
</details>
@ -34,8 +34,8 @@ export function PostSegment(props: { post: Post }): JSXElement {
<p class="my-5 text-base">{props.post.content}</p>
<div class="card-actions justify-between">
<div class="flex">
<EngagementButton post={props.post} />
<CommentsBUtton post={props.post} />
<EngagementButton />
<CommentsBUtton />
</div>
<ToPostButton post={props.post} />
</div>