Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Hkaar committed Nov 6, 2024
1 parent 41bf5f4 commit 4c961e3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/(dynamic)/projects/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import TableCell from "@/components/Table/TableCell";
import ProjectHeader from "@/components/ProjectHeader";
import ProgressBar from "@/components/ProgressBar";
import ProgressItem from "@/components/ProgressBar/ProgressItem";
import { twMerge } from "tailwind-merge";

async function getProject(slug: string) {
const response: Project = await sanityClient.fetch(
Expand Down Expand Up @@ -93,7 +92,7 @@ export default async function ProjectPage(props: ProjectPageProps) {
</h3>

<Table headings={[{ name: "Platforms" }, { name: "Status" }]}>
{project.platforms?.map((platform, i) => (
{project.platforms?.map((platform) => (
<TableRow key={platform.name}>
<TableCell>
<div className="flex items-center gap-2">
Expand Down

0 comments on commit 4c961e3

Please sign in to comment.