diff --git a/react-frontend/src/App.tsx b/react-frontend/src/App.tsx index 3fc580d..7a6d063 100644 --- a/react-frontend/src/App.tsx +++ b/react-frontend/src/App.tsx @@ -144,7 +144,6 @@ const ShortenerTable = ({ shorteners }: { shorteners: Shortener[] }) => { const { toast } = useToast() const copyLinkToClipboard = async (code: string) => { await navigator.clipboard.writeText(backend_url + '/' + code) - console.log(code) toast({ title: 'Link Copied', description: `Copied ${backend_url + '/' + code} To Clipboard`, @@ -168,6 +167,7 @@ const ShortenerTable = ({ shorteners }: { shorteners: Shortener[] }) => { {shortener.link} copyLinkToClipboard(shortener.code) }>