diff --git a/src/components/team/creditEntry.tsx b/src/components/team/creditEntry.tsx index 56af4013..e9dbf93e 100644 --- a/src/components/team/creditEntry.tsx +++ b/src/components/team/creditEntry.tsx @@ -8,7 +8,7 @@ import { TeamBadges } from "./teamBadges"; import { TeamMemberNode } from "../../types/graphql/teamMemberNode"; import { GatsbyImage, getImage } from "gatsby-plugin-image"; -import TeamTag from "../../types/teamTag"; +import TeamTag from "../../types/team/teamTag"; import { Theme } from "@mui/material"; type CreditEntryArgs = { diff --git a/src/components/team/teamBadges.tsx b/src/components/team/teamBadges.tsx index a418164c..37fa65d9 100644 --- a/src/components/team/teamBadges.tsx +++ b/src/components/team/teamBadges.tsx @@ -1,6 +1,6 @@ import * as React from "react"; -import TeamTag from "../../types/teamTag"; +import TeamTag from "../../types/team/teamTag"; import { Chip, Theme } from "@mui/material"; import capitalizeWords from "../../capitalizeWords"; diff --git a/src/filters/teamEntryFilter.ts b/src/filters/teamEntryFilter.ts index b9ccb33f..b86e2371 100644 --- a/src/filters/teamEntryFilter.ts +++ b/src/filters/teamEntryFilter.ts @@ -1,5 +1,5 @@ import { CreditEntry } from "../components/team/creditEntry"; -import { FilterChip } from "../types/filterChip"; +import { FilterChip } from "../types/team/filterChip"; const teamEntryFilter = ( entries: React.JSX.Element[], diff --git a/src/pages/team.tsx b/src/pages/team.tsx index 4d1586ce..b947661c 100644 --- a/src/pages/team.tsx +++ b/src/pages/team.tsx @@ -19,9 +19,9 @@ import AddIcon from "@mui/icons-material/Add"; import update from "immutability-helper"; import { TeamTagColourNode } from "../types/graphql/teamTagColourNode"; -import TeamTag from "../types/teamTag"; +import TeamTag from "../types/team/teamTag"; import ExtendablePalette from "../types/extendablePalette"; -import { FilterChip, FilterChipEntry } from "../types/filterChip"; +import { FilterChip, FilterChipEntry } from "../types/team/filterChip"; import capitalizeWords from "../capitalizeWords"; import teamEntryFilter from "../filters/teamEntryFilter"; diff --git a/src/types/filterChip.ts b/src/types/team/filterChip.ts similarity index 100% rename from src/types/filterChip.ts rename to src/types/team/filterChip.ts diff --git a/src/types/teamTag.ts b/src/types/team/teamTag.ts similarity index 100% rename from src/types/teamTag.ts rename to src/types/team/teamTag.ts