We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02b4ecf commit f800acdCopy full SHA for f800acd
1 file changed
src/utils/coana.mts
@@ -66,7 +66,8 @@ export function extractTier1ReachabilityScanId(
66
): string | undefined {
67
const json = readJsonSync(socketFactsFile, { throws: false })
68
const tier1ReachabilityScanId = json?.['tier1ReachabilityScanId']
69
- return typeof tier1ReachabilityScanId === 'string' && tier1ReachabilityScanId.length > 0
+ return typeof tier1ReachabilityScanId === 'string' &&
70
+ tier1ReachabilityScanId.length > 0
71
? tier1ReachabilityScanId
72
: undefined
73
}
0 commit comments