소스 검색

fix(live-stream-section): Use await for copyText

j8
Hristo Terezov 4 년 전
부모
커밋
9e29dd063f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      react/features/invite/components/add-people-dialog/web/LiveStreamSection.js

+ 1
- 1
react/features/invite/components/add-people-dialog/web/LiveStreamSection.js 파일 보기

@@ -37,7 +37,7 @@ function LiveStreamSection({ liveStreamViewURL, t }: Props) {
37 37
     async function onClick() {
38 38
         setIsHovered(false);
39 39
 
40
-        const isCopied = copyText(liveStreamViewURL);
40
+        const isCopied = await copyText(liveStreamViewURL);
41 41
 
42 42
         if (isCopied) {
43 43
             setIsClicked(true);

Loading…
취소
저장