Skip to content

Commit f800acd

Browse files
committed
Lint nit
1 parent 02b4ecf commit f800acd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/utils/coana.mts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ export function extractTier1ReachabilityScanId(
6666
): string | undefined {
6767
const json = readJsonSync(socketFactsFile, { throws: false })
6868
const tier1ReachabilityScanId = json?.['tier1ReachabilityScanId']
69-
return typeof tier1ReachabilityScanId === 'string' && tier1ReachabilityScanId.length > 0
69+
return typeof tier1ReachabilityScanId === 'string' &&
70+
tier1ReachabilityScanId.length > 0
7071
? tier1ReachabilityScanId
7172
: undefined
7273
}

0 commit comments

Comments
 (0)