Run format

This commit is contained in:
pierrbt
2023-06-23 16:22:57 +02:00
parent e5718700bc
commit 8fdba0ca7c
3 changed files with 44 additions and 48 deletions

View File

@@ -1,13 +1,11 @@
import {useRef, useState} from "react";
import { useRef, useState } from "react";
import toast from "../../utils/toast.util";
import {ActionIcon, TextInput} from "@mantine/core";
import {TbCheck, TbCopy} from "react-icons/tb";
import {useClipboard} from "@mantine/hooks";
import {text} from "stream/consumers";
function CopyTextField(props: { link: string })
{
import { ActionIcon, TextInput } from "@mantine/core";
import { TbCheck, TbCopy } from "react-icons/tb";
import { useClipboard } from "@mantine/hooks";
import { text } from "stream/consumers";
function CopyTextField(props: { link: string }) {
const clipboard = useClipboard({ timeout: 500 });
const [checkState, setCheckState] = useState(false);
const [textClicked, setTextClicked] = useState(false);
@@ -25,8 +23,7 @@ function CopyTextField(props: { link: string })
setCheckState(true);
};
return(
return (
<TextInput
readOnly
label="Link"
@@ -46,7 +43,7 @@ function CopyTextField(props: { link: string })
)
}
/>
)
);
}
export default CopyTextField;

View File

@@ -21,7 +21,6 @@ const showCompletedUploadModal = (
};
const Body = ({ share, appUrl }: { share: Share; appUrl: string }) => {
const modals = useModals();
const router = useRouter();