Skip to content

Commit 46bbeaa

Browse files
committed
fix: remove unused variable in projects component
1 parent ec52d31 commit 46bbeaa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Projects.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ const projects: Project[] = [
4646

4747
<div class="my-8">
4848
<h1 class="lowercase text-gray-900 dark:text-gray-100">Projects</h1>
49-
{projects.map((project, index) => <ProjectCard project={project} />)}
49+
{projects.map((project) => <ProjectCard project={project} />)}
5050
</div>

0 commit comments

Comments
 (0)