Skip to content

Commit 8bfc5c7

Browse files
committed
chore: formatting
1 parent e6becf2 commit 8bfc5c7

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/options/options.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import { storage } from 'webextension-polyfill';
2-
import { KEY_DISABLED_HOSTS, disabledHosts, getHostname, invertHostState } from '../bg/utils/storage';
2+
import {
3+
KEY_DISABLED_HOSTS,
4+
disabledHosts,
5+
getHostname,
6+
invertHostState,
7+
} from '../bg/utils/storage';
38

49
const table = document.querySelector('.table')!;
510

@@ -12,7 +17,7 @@ async function addEntry() {
1217
const search = new URLSearchParams(document.location.search);
1318
let hostname = search.get('hostname');
1419
if (hostname === null) return;
15-
20+
1621
hostname = getHostname(hostname);
1722
if (disabledHosts.includes(hostname)) return;
1823

0 commit comments

Comments
 (0)