frontend: prettier

This commit is contained in:
0x1eef 2024-01-14 17:48:41 -03:00
parent 0ff4b887a1
commit 5f64b8a5ff
3 changed files with 5 additions and 6 deletions

View file

@ -7,8 +7,8 @@ export type Tab = {
};
type Props = {
labels: string[];
defaultLabel: string;
labels: string[];
onChange: (t: Tab) => void;
};

View file

@ -1,8 +1,7 @@
import { ApolloProvider } from "@apollo/client";
import { ApolloProvider, ApolloClient, InMemoryCache } from "@apollo/client";
import React from "react";
import ReactDOM from "react-dom/client";
import { Task as Component } from "/components/Task";
import { ApolloClient, InMemoryCache } from "@apollo/client";
(function () {
const params = Object.fromEntries(

View file

@ -80,14 +80,14 @@ export type Project = {
id: Scalars["Int"]["output"];
name: Scalars["String"]["output"];
path: Scalars["String"]["output"];
tasks: Array<Task>;
tasks: Task[];
};
export type Query = {
__typename?: "Query";
findTask?: Maybe<Task>;
projects: Array<Project>;
tasks: Array<Task>;
projects: Project[];
tasks: Task[];
};
export type QueryFindTaskArgs = {