Merge branch 'dev' of git.silversoft.se:Imbus/FrostByte into dev

This commit is contained in:
Imbus 2024-03-24 23:45:27 +01:00
commit a2292ffc68

View file

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