Skip to content

Commit 9ef2475

Browse files
committed
fix: remove unused imports flagged by Copilot
- Remove unused Image import from AboutSection.tsx - Remove unused Image, MessageCircle, Heart imports from CommunitySection.tsx Signed-off-by: Gauarv Chaudhary <[email protected]>
1 parent eecb708 commit 9ef2475

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/components/sections/AboutSection.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"use client";
22

3-
import Image from "next/image";
4-
53
export function AboutSection() {
64
return (
75
<section

src/components/sections/CommunitySection.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"use client";
22

3-
import Image from "next/image";
4-
import { Users, MessageCircle, Heart } from "lucide-react";
3+
import { Users } from "lucide-react";
54

65
export function CommunitySection() {
76
return (

0 commit comments

Comments
 (0)