ソースを参照

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);

読み込み中…
キャンセル
保存