Skip to content

Commit 131150b

Browse files
Fix: Improve formatting of localHosts declaration in AccessibilityScanner
1 parent b8d4776 commit 131150b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/accessiblity-utils/scanner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class AccessibilityScanner {
3232
// Check if any URL is local
3333
const hasLocal = urlList.some(isLocalURL);
3434
const localIdentifier = crypto.randomUUID();
35-
const localHosts = new Set(["127.0.0.1", "localhost","0.0.0.0"]);
35+
const localHosts = new Set(["127.0.0.1", "localhost", "0.0.0.0"]);
3636
const BS_LOCAL_DOMAIN = "bs-local.com";
3737

3838
if (hasLocal) {

0 commit comments

Comments
 (0)