Skip to content

Commit

Permalink
[FE] FIX: 공유코드 클릭했을때 debounce 함수 호출시 key 이름에서 time 내용 삭제#1677
Browse files Browse the repository at this point in the history
  • Loading branch information
jnkeniaem committed Aug 20, 2024
1 parent 47a35ef commit 92a5c31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const CodeAndTime = ({ minutes, seconds, isTimeOver }: CountTimeProps) => {
navigator.clipboard.writeText(code).then(() => {
setCopySuccess(true);
debounce(
"codeAndTimeCopyClick",
"codeCopyClick",
() => {
setCopySuccess(false);
},
Expand Down

0 comments on commit 92a5c31

Please sign in to comment.