diff --git a/client-solid/src/Components/Comment.tsx b/client-solid/src/Components/Comment.tsx
index a021681..9838fb4 100644
--- a/client-solid/src/Components/Comment.tsx
+++ b/client-solid/src/Components/Comment.tsx
@@ -1,7 +1,6 @@
import { JSXElement } from "solid-js";
import { PublicComment } from "../Util/api";
-import ReplyButton from "./Buttons/Reply";
interface CommentProps {
comment: PublicComment;
@@ -10,20 +9,11 @@ interface CommentProps {
export function Comment(props: CommentProps): JSXElement {
return (
<>
-
+
-
{props.comment.content}
+
{props.comment.content}
-
-
-
-
Replies to parent comment if any
-
-
-
-
-
>
);
}
diff --git a/client-solid/src/Components/PostSegment.tsx b/client-solid/src/Components/PostSegment.tsx
index 756076a..cfc62dd 100644
--- a/client-solid/src/Components/PostSegment.tsx
+++ b/client-solid/src/Components/PostSegment.tsx
@@ -15,9 +15,9 @@ export function PostSegment(props: { post: Post }): JSXElement {
-
{dateOfCreation}
+
{dateOfCreation}
- ...
+ ...
-
@@ -31,7 +31,7 @@ export function PostSegment(props: { post: Post }): JSXElement {
This post has been edited
- {post.content}
+ {post.content}