Skip to content

Commit

Permalink
Change click to copy finish wording
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaewoook committed Oct 11, 2021
1 parent 82b21ad commit 5a29de0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ClickToCopyText/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const ClickToCopyText: React.FC<ClickToCopyTextProps> = ({ children, anal
}
}, [setCopied]);
return (
<Tooltip title={!copied ? "클릭해서 복사하기" : "복사됨!"} onVisibleChange={handleVisibleChange}>
<Tooltip title={!copied ? "클릭해서 복사하기" : "복사완료!"} onVisibleChange={handleVisibleChange}>
<Button className="text-click-to-copy" type="link" onClick={handleCopyClick}>{children}</Button>
</Tooltip>
);
Expand Down

0 comments on commit 5a29de0

Please sign in to comment.