Use focus trap for CallingLobby

This commit is contained in:
Fedor Indutny 2021-10-25 07:58:09 -07:00 committed by GitHub
parent 191bfee18c
commit b38b22f49d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 179 additions and 132 deletions

View file

@ -12763,19 +12763,12 @@
},
{
"rule": "React-useRef",
"path": "ts/components/Tooltip.js",
"line": " const wrapperRef = react_1.default.useRef(null);",
"path": "ts/components/TooltipEventWrapper.tsx",
"line": " const wrapperRef = useRef<HTMLSpanElement | null>(null);",
"reasonCategory": "usageTrusted",
"updated": "2020-12-04T00:11:08.128Z",
"updated": "2021-10-21T16:10:14.143Z",
"reasonDetail": "Used to add (and remove) event listeners."
},
{
"rule": "React-useRef",
"path": "ts/components/Tooltip.tsx",
"line": " const wrapperRef = React.useRef<HTMLSpanElement | null>(null);",
"reasonCategory": "usageTrusted",
"updated": "2021-07-30T16:57:33.618Z"
},
{
"rule": "React-createRef",
"path": "ts/components/conversation/ConversationHeader.js",