Skip to content

Commit d54ce54

Browse files
committed
Lint nit
1 parent 4345fb6 commit d54ce54

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/utils/coana.mts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ export function extractTier1ReachabilityScanId(
1515
socketFactsFile: string,
1616
): string | undefined {
1717
const json = readJsonSync(socketFactsFile, { throws: false })
18-
const tier1ReachabilityScanId = String(json?.['tier1ReachabilityScanId'] ?? '').trim()
18+
const tier1ReachabilityScanId = String(
19+
json?.['tier1ReachabilityScanId'] ?? '',
20+
).trim()
1921
return tier1ReachabilityScanId.length > 0
2022
? tier1ReachabilityScanId
2123
: undefined

0 commit comments

Comments
 (0)