Leafcutter / Link build updates

This commit is contained in:
Darren Clarke 2023-07-18 08:16:16 +00:00 committed by GitHub
parent de5106e9e8
commit 6e6cc22d2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 491 additions and 29 deletions

View file

@ -6,14 +6,14 @@ import {
Box,
// Typography,
// TextField,
Stack,
// Stack,
Select,
MenuItem,
} from "@mui/material";
import { MuiChipsInput } from "mui-chips-input";
import useSWR, { useSWRConfig } from "swr";
import { getTicketQuery } from "app/_graphql/getTicketQuery";
import { updateTicketMutation } from "app/_graphql/updateTicketMutation";
import { getTicketQuery } from "../../../../../_graphql/getTicketQuery";
import { updateTicketMutation } from "../../../../../_graphql/updateTicketMutation";
import "@chatscope/chat-ui-kit-styles/dist/default/styles.min.css";
interface TicketEditProps {
@ -43,7 +43,7 @@ export const TicketEdit: FC<TicketEditProps> = ({ id }) => {
document: getTicketQuery,
variables: { ticketId: `gid://zammad/Ticket/${id}` },
},
{ refreshInterval: 100000 }
{ refreshInterval: 100000 },
);
useEffect(() => {
const ticket = ticketData?.ticket;