Skip to content

Commit 6d7d4a5

Browse files
committed
style(kilo-pass): fix oxfmt formatting in card-fingerprint-gate.ts
1 parent 3360519 commit 6d7d4a5

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

apps/web/src/lib/kilo-pass/card-fingerprint-gate.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -245,12 +245,7 @@ export async function checkDuplicateCardFingerprintGate(params: {
245245
blocked_reason: 'kilo_pass_duplicate_card',
246246
blocked_at: new Date().toISOString(),
247247
})
248-
.where(
249-
and(
250-
eq(kilocode_users.id, kiloUserId),
251-
isNull(kilocode_users.blocked_reason),
252-
)
253-
);
248+
.where(and(eq(kilocode_users.id, kiloUserId), isNull(kilocode_users.blocked_reason)));
254249

255250
return {
256251
blocked: true,

0 commit comments

Comments
 (0)