Skip to content

Commit

Permalink
fix: shorten the dwelltime for copy feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
lidel committed Nov 3, 2020
1 parent 0c9d339 commit d57d150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/peers/PeersTable/PeersTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const copyFeedback = (ref, t) => {
const msg = document.createElement('em')
msg.innerText = t('copyFeedback')
parentNode.replaceChild(msg, tag)
setTimeout(() => parentNode.replaceChild(tag, msg), ms.seconds(3))
setTimeout(() => parentNode.replaceChild(tag, msg), ms.seconds(2))
}

export default connect(
Expand Down

0 comments on commit d57d150

Please sign in to comment.