From 7730f17490e4a5cc3e294b6a78002773b466fea4 Mon Sep 17 00:00:00 2001
From: Ategon <benjamin@barbeau.net>
Date: Sat, 18 Jan 2025 12:48:38 -0500
Subject: [PATCH] Fix linting

---
 src/app/login/page.tsx            | 2 +-
 src/components/posts/PostCard.tsx | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx
index 9931bec..932a8da 100644
--- a/src/app/login/page.tsx
+++ b/src/app/login/page.tsx
@@ -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>
diff --git a/src/components/posts/PostCard.tsx b/src/components/posts/PostCard.tsx
index ca23d24..c1786b9 100644
--- a/src/components/posts/PostCard.tsx
+++ b/src/components/posts/PostCard.tsx
@@ -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 }) {