Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
blaine-arcjet committed Feb 8, 2024
1 parent 84f9217 commit 0fff9e0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions arcjet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,11 @@ export default function arcjet<
reason: decision.reason,
});

blockCache.set(fingerprint, decision.reason, nowInSeconds() + decision.ttl);
blockCache.set(
fingerprint,
decision.reason,
nowInSeconds() + decision.ttl,
);
}

return decision;
Expand Down Expand Up @@ -1242,7 +1246,11 @@ export default function arcjet<
decision.ttl,
);

blockCache.set(fingerprint, decision.reason, nowInSeconds() + decision.ttl);
blockCache.set(
fingerprint,
decision.reason,
nowInSeconds() + decision.ttl,
);
}

return decision;
Expand Down

0 comments on commit 0fff9e0

Please sign in to comment.