From 7f9f34974cd353789c95c1727a80d77de8549fde Mon Sep 17 00:00:00 2001 From: SukkaW Date: Sat, 21 Jun 2025 01:11:29 +0800 Subject: [PATCH] Chore: fix reject stats --- Build/validate-reject-stats.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Build/validate-reject-stats.ts b/Build/validate-reject-stats.ts index 3301eefd..07351c49 100644 --- a/Build/validate-reject-stats.ts +++ b/Build/validate-reject-stats.ts @@ -16,8 +16,8 @@ import runAgainstSourceFile from './lib/run-against-source-file'; map.set( apexDomain, - rejectDomainCountMap.has(apexDomain) - ? rejectDomainCountMap.get(apexDomain)! + 1 + map.has(apexDomain) + ? map.get(apexDomain)! + 1 : 1 ); };