Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
InfiniteStash committed Dec 10, 2024
1 parent 176ea37 commit 167fa0a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/src/graphql/queries/Draft.gql
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ query Draft($id: ID!) {
aliases
gender
birthdate
deathdate
urls
ethnicity
country
Expand Down
5 changes: 5 additions & 0 deletions frontend/src/graphql/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14468,6 +14468,7 @@ export type DraftQuery = {
aliases?: string | null;
gender?: string | null;
birthdate?: string | null;
deathdate?: string | null;
urls?: Array<string> | null;
ethnicity?: string | null;
country?: string | null;
Expand Down Expand Up @@ -53137,6 +53138,10 @@ export const DraftDocument = {
kind: "Field",
name: { kind: "Name", value: "birthdate" },
},
{
kind: "Field",
name: { kind: "Name", value: "deathdate" },
},
{
kind: "Field",
name: { kind: "Name", value: "urls" },
Expand Down
1 change: 0 additions & 1 deletion frontend/src/pages/performers/components/performerInfo.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { FC, useContext } from "react";
import { parseISO, differenceInYears } from "date-fns";
import { Link } from "react-router-dom";
import { Button, Card, Col, Row, Table } from "react-bootstrap";
import { faCodeMerge } from "@fortawesome/free-solid-svg-icons";
Expand Down

0 comments on commit 167fa0a

Please sign in to comment.