diff --git a/frontend/src/components/share/modals/showCompletedReverseShareModal.tsx b/frontend/src/components/share/modals/showCompletedReverseShareModal.tsx index 54a872aca..10068a851 100644 --- a/frontend/src/components/share/modals/showCompletedReverseShareModal.tsx +++ b/frontend/src/components/share/modals/showCompletedReverseShareModal.tsx @@ -1,9 +1,7 @@ -import { ActionIcon, Button, Stack, TextInput } from "@mantine/core"; -import { useClipboard } from "@mantine/hooks"; +import { Button, Stack } from "@mantine/core"; import { useModals } from "@mantine/modals"; import { ModalsContextProps } from "@mantine/modals/lib/context"; -import { TbCopy } from "react-icons/tb"; -import toast from "../../../utils/toast.util"; +import CopyTextField from "../../upload/CopyTextField"; const showCompletedReverseShareModal = ( modals: ModalsContextProps, @@ -26,28 +24,11 @@ const Body = ({ link: string; getReverseShares: () => void; }) => { - const clipboard = useClipboard({ timeout: 500 }); const modals = useModals(); return ( - { - clipboard.copy(link); - toast.success("Your link was copied to the keyboard."); - }} - > - - - ) - } - /> +