Removal of props for build to run
This commit is contained in:
parent
146518b94a
commit
6fcbb92691
1 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ export function PostSegment(props: { post: Post }): JSXElement {
|
||||||
<ReportButton />
|
<ReportButton />
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<RemovePostButton post={props.post} />
|
<RemovePostButton />
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</details>
|
</details>
|
||||||
|
@ -34,8 +34,8 @@ export function PostSegment(props: { post: Post }): JSXElement {
|
||||||
<p class="my-5 text-base">{props.post.content}</p>
|
<p class="my-5 text-base">{props.post.content}</p>
|
||||||
<div class="card-actions justify-between">
|
<div class="card-actions justify-between">
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<EngagementButton post={props.post} />
|
<EngagementButton />
|
||||||
<CommentsBUtton post={props.post} />
|
<CommentsBUtton />
|
||||||
</div>
|
</div>
|
||||||
<ToPostButton post={props.post} />
|
<ToPostButton post={props.post} />
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue