diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-02-19 07:30:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-19 12:30:17 +0000 |
commit | 2da866f982930c76d2317a3be426410683ecf5a2 (patch) | |
tree | e77ce545177ba398068cb63037096a56dea04e2c /ext/js/comm/frame-endpoint.js | |
parent | 65fa65fc7765bc9a6557d3ce6f8bdcef5b5e0cf7 (diff) |
Update eslint rules (#710)
Diffstat (limited to 'ext/js/comm/frame-endpoint.js')
-rw-r--r-- | ext/js/comm/frame-endpoint.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/js/comm/frame-endpoint.js b/ext/js/comm/frame-endpoint.js index d2002d2e..69d28a1e 100644 --- a/ext/js/comm/frame-endpoint.js +++ b/ext/js/comm/frame-endpoint.js @@ -46,7 +46,7 @@ export class FrameEndpoint { } /** @type {import('frame-client').FrameEndpointReadyDetails} */ const details = {secret: this._secret}; - this._api.broadcastTab({action: 'frameEndpointReady', params: details}); + void this._api.broadcastTab({action: 'frameEndpointReady', params: details}); } /** @@ -88,6 +88,6 @@ export class FrameEndpoint { this._eventListeners.removeAllEventListeners(); /** @type {import('frame-client').FrameEndpointConnectedDetails} */ const details = {secret, token}; - this._api.sendMessageToFrame(hostFrameId, {action: 'frameEndpointConnected', params: details}); + void this._api.sendMessageToFrame(hostFrameId, {action: 'frameEndpointConnected', params: details}); } } |