瀏覽代碼

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

master
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…
取消
儲存