diff --git a/components/modules/SamplingErrorModule.tsx b/components/modules/SamplingErrorModule.tsx index 8fe0868..6c88c80 100644 --- a/components/modules/SamplingErrorModule.tsx +++ b/components/modules/SamplingErrorModule.tsx @@ -1,6 +1,8 @@ import React, { useState } from 'react'; import { Microscope, Info, AlertCircle, CheckCircle2 } from 'lucide-react'; +const GRID_CELLS = Array.from({ length: 16 }); + const SamplingErrorModule: React.FC = () => { const [isShaken, setIsShaken] = useState(false); const [samplingPosition, setSamplingPosition] = useState<'top' | 'bottom' | null>(null); @@ -132,13 +134,13 @@ const SamplingErrorModule: React.FC = () => { {/* The circular view */}