diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-07-04 13:29:42 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-07-04 13:29:42 +0900 |
commit | 6b88c15d1a6193cd090c5a1ae9b6ea06a467e171 (patch) | |
tree | e1b78080d8e10477007c9379b57a6213e6f72c6a /src/background/infrastructures | |
parent | 5904eeff1a75dcf83bcef7d5666a7473cc5b77de (diff) |
yarn lint:fix
Diffstat (limited to 'src/background/infrastructures')
-rw-r--r-- | src/background/infrastructures/ContentMessageClient.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/background/infrastructures/ContentMessageClient.ts b/src/background/infrastructures/ContentMessageClient.ts index e889392..8c00626 100644 --- a/src/background/infrastructures/ContentMessageClient.ts +++ b/src/background/infrastructures/ContentMessageClient.ts @@ -19,7 +19,7 @@ export default class ContentMessageClient { const enabled = await browser.tabs.sendMessage(tabId, { type: messages.ADDON_ENABLED_QUERY, }); - return (enabled as any) as boolean; + return enabled as any as boolean; } async toggleAddonEnabled(tabId: number): Promise<void> { |