Removed old toPost btn

This commit is contained in:
Hollgy 2024-03-24 23:01:51 +01:00
parent 630f19f82c
commit c3ded8a27b

View file

@ -11,7 +11,6 @@ import CommentsButton from "./Buttons/CommentsButton";
import EngagementButton from "./Buttons/Engegament";
import RemovePostButton from "./Buttons/RemovePostButton";
import ReportButton from "./Buttons/Report";
import ToPostButton from "./Buttons/ToPost";
export function PostSegment(props: { post: Post }): JSXElement {
const [local] = splitProps(props, ["post"]);
@ -51,7 +50,6 @@ export function PostSegment(props: { post: Post }): JSXElement {
<EngagementButton postId={local.post.id} />
<CommentsButton postId={local.post.id} />
</div>
<ToPostButton post={local.post} />
</div>
</div>
</div>