Skip to content

Commit 6667926

Browse files
committed
Formatting
1 parent 9aada5c commit 6667926

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Sources/Shared/Stamper.swift

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,14 @@ public class Stamper {
117117
}
118118
}
119119

120-
guard let challenge = payload.compactMap({ String(format: "%02x", $0) }).joined().data(using: .utf8) else {
120+
guard
121+
let challenge = payload.compactMap({ String(format: "%02x", $0) }).joined().data(
122+
using: .utf8)
123+
else {
121124
continuation.resume(throwing: StampError.assertionFailed)
122-
return
125+
return
123126
}
124-
127+
125128
self.passkeyManager?.assertPasskey(challenge: challenge)
126129
}
127130
}

0 commit comments

Comments
 (0)