Skip to content

Commit

Permalink
feat: correct prettier errors
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyrusso committed Sep 25, 2023
1 parent 3a9136c commit 6dbbcdb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/app/tech-stack/components/TechStackContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ export default function TechStackContainer() {
<div className="card bg-primary-content p-10 w-full">
<ul className="grid grid-cols-2 min-[1920px]:grid-cols-3 gap-10 place-items-center">
{Object.keys(techStack).map((cardType) => (
<li
key={cardType}
>
<li key={cardType}>
<TechStackCard
title={cardType}
data={techStack[cardType as keyof typeof techStack]}
Expand Down

0 comments on commit 6dbbcdb

Please sign in to comment.