Skip to content

Commit 0ceec25

Browse files
committed
Lint
1 parent 3778d33 commit 0ceec25

File tree

1 file changed

+6
-1
lines changed
  • apps/sim/app/api/copilot/api-keys/validate

1 file changed

+6
-1
lines changed

apps/sim/app/api/copilot/api-keys/validate/route.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ export async function POST(req: NextRequest) {
2424

2525
const { isExceeded, currentUsage, limit } = await checkServerSideUsageLimits(userId)
2626

27-
logger.info('[API VALIDATION] Usage limit validated', { userId, currentUsage, limit, isExceeded })
27+
logger.info('[API VALIDATION] Usage limit validated', {
28+
userId,
29+
currentUsage,
30+
limit,
31+
isExceeded,
32+
})
2833

2934
if (isExceeded) {
3035
logger.info('[API VALIDATION] Usage exceeded', { userId, currentUsage, limit })

0 commit comments

Comments
 (0)