We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54ae7b5 commit 0760fd4Copy full SHA for 0760fd4
src/containers/post/PostViewer.tsx
@@ -33,6 +33,7 @@ import media from '../../lib/styles/media';
33
import useNotFound from '../../lib/hooks/useNotFound';
34
import { Helmet } from 'react-helmet-async';
35
import { RootState } from '../../modules';
36
+import { toast } from 'react-toastify';
37
38
const UserProfileWrapper = styled(VelogResponsive)`
39
margin-top: 16rem;
@@ -278,6 +279,7 @@ const PostViewer: React.FC<PostViewerProps> = ({
278
279
break;
280
case 'clipboard':
281
copyText(link);
282
+ toast.success('링크가 복사되었습니다.');
283
284
default:
285
}
0 commit comments