Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
maxidragon committed Oct 4, 2024
1 parent 662a282 commit 5b2f2f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/lib/attempt-result.js
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,7 @@ function checkForDnsFollowedByValidResult(attemptResults) {
const dnsIndex = attemptResults.findIndex((attempt) => attempt === DNS_VALUE);
if (dnsIndex === -1) return false;
return attemptResults.some(
(attempt, index) => index > dnsIndex && (attempt !== SKIPPED_VALUE && attempt !== DNS_VALUE)
(attempt, index) =>
index > dnsIndex && attempt !== SKIPPED_VALUE && attempt !== DNS_VALUE
);
}

0 comments on commit 5b2f2f9

Please sign in to comment.