Skip to content

Commit

Permalink
chore(site): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Swepool committed Oct 10, 2024
1 parent b12ce7a commit 4e4afb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions site/src/pages/team.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import type { TeamPageFields, TeamPageSkeleton } from "../lib/contentful/types"
import { contentfulClient } from "../lib/contentful/client"
import type { TeamPageFields, TeamPageSkeleton } from "../lib/contentful/types.ts"
import { contentfulClient } from "../lib/contentful/client.ts"
import SectionsLayout from "#/layouts/SectionsLayout.astro"
import Card from "#/components/Card.astro"
Expand Down Expand Up @@ -79,7 +79,7 @@ const teams = [
}
]
let teamData: TeamPageFields[] | null = null
let teamData: Array<TeamPageFields> | null = null
let error: string | null = null
try {
Expand Down

0 comments on commit 4e4afb8

Please sign in to comment.