Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwoberts committed Dec 29, 2024
1 parent c9243d6 commit 3ec58d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/components/common/Moment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ export const Moment = (props: MomentText) => {
{display}
</span>
)
}
}
4 changes: 3 additions & 1 deletion public/pages/ShowPost/components/MostWanted.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ export const MostWanted = () => {
<div key={post.id} className="pt-1">
<span className="text-medium">{post.title}</span>
<div className="pt-1 flex">
<span className="text-muted" style={{ width: "150px" }}>{post.commentsCount} comments</span>
<span className="text-muted" style={{ width: "150px" }}>
{post.commentsCount} comments
</span>
<span className="text-muted">{post.votesCount} votes</span>
</div>
</div>
Expand Down
1 change: 0 additions & 1 deletion public/pages/ShowPost/components/TagsPanel2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export const TagsPanel2 = (props: TagsPanelProps) => {
</VStack>
)


if (fider.isReadOnly) {
return (
<VStack>
Expand Down

0 comments on commit 3ec58d9

Please sign in to comment.