Skip to content

Commit

Permalink
chore: remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
tructn committed Jun 14, 2024
1 parent d424cc8 commit 96f7313
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions frontend/src/screens/dashboard/match-list-content.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Alert, Button, Modal } from "@mantine/core";
import { useClipboard, useDisclosure } from "@mantine/hooks";
import { useMutation } from "@tanstack/react-query";
import React, { useMemo, useRef, useState } from "react";
import React, { useMemo, useRef } from "react";
import { FaCashRegister } from "react-icons/fa";
import { FiDollarSign } from "react-icons/fi";
import {
Expand Down Expand Up @@ -38,11 +38,8 @@ interface Prop {
}

const MatchListContent: React.FC<Prop> = ({ match }) => {
const [currentCost, setCurrentCost] = useState(0);
const clipboard = useClipboard({ timeout: 500 });
const clipboardRef = useRef<HTMLDivElement>(null!);
const [costOpened, { open: openCost, close: closeCost }] =
useDisclosure(false);

const [
additionalCostOpened,
Expand Down

0 comments on commit 96f7313

Please sign in to comment.