Fix linting

This commit is contained in:
Ategon 2025-01-18 12:48:38 -05:00
parent a258772f7e
commit 7730f17490
2 changed files with 2 additions and 2 deletions

View file

@ -106,7 +106,7 @@ export default function UserPage() {
</Button>
</div>
<p>
Don't have an account? <Link href="/signup">Sign up</Link>
Don&apos;t have an account? <Link href="/signup">Sign up</Link>
</p>
</Form>
</div>

View file

@ -2,7 +2,7 @@ import { Avatar, Button, Card, CardBody, Spacer } from "@nextui-org/react";
import { formatDistance } from "date-fns";
import Link from "next/link";
import { PostType } from "@/types/PostType";
import { Heart, MessageCircle } from "lucide-react";
import { MessageCircle } from "lucide-react";
import LikeButton from "./LikeButton";
export default function PostCard({ post }: { post: PostType }) {