()
| 301 | }; |
| 302 | |
| 303 | const checkTabActive = () => { |
| 304 | if (!tabId) return true; |
| 305 | const { browser } = store.getState(); |
| 306 | if (tabId !== browser.activeTab) |
| 307 | throw providerErrors.userRejectedRequest(); |
| 308 | }; |
| 309 | |
| 310 | const getSource = () => { |
| 311 | if (analytics?.isRemoteConn) |
no test coverage detected