From d72c2d14bf5523047efac5a34cd85fbe4fc3ad5b Mon Sep 17 00:00:00 2001 From: openhands Date: Sun, 22 Feb 2026 19:48:39 +0000 Subject: [PATCH] fix: remove console.warn to pass lint (#170) --- landing/src/components/LiveStats.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/landing/src/components/LiveStats.vue b/landing/src/components/LiveStats.vue index 363eafe..93d0ceb 100644 --- a/landing/src/components/LiveStats.vue +++ b/landing/src/components/LiveStats.vue @@ -96,8 +96,6 @@ function weiToEth(wei: string | null | undefined): number { */ function extractSeries(ringBuffer: string[], pointer: number, slotOffset: number): number[] { if (ringBuffer.length !== RING_HOURS * RING_SEGMENTS) { - // eslint-disable-next-line no-console - console.warn(`Ring buffer size mismatch: expected ${RING_HOURS * RING_SEGMENTS}, got ${ringBuffer.length}`); return []; } const raw: number[] = [];