diff --git a/shared/domain/activityField/novemberField.ts b/shared/domain/activityField/novemberField.ts index b70c11d83..9192dca20 100644 --- a/shared/domain/activityField/novemberField.ts +++ b/shared/domain/activityField/novemberField.ts @@ -72,7 +72,7 @@ export class NovemberData extends ActivityBase { if (playerData.records) { this.records = playerData?.records || []; for (const data of playerData.records) { - let { todayIndex, isSuccess, hasPass } = data; + let { todayIndex, isSuccess } = data; if (todayIndex == this.todayIndex && isSuccess) this.todayPlayCnt++; if (isSuccess) this.playCnt++; }