Fix regions_ variable name - revert underscore prefix since its used

This commit is contained in:
Aether 2026-02-23 20:31:20 +00:00
parent ec1f3a1b06
commit 07b585fe5c
No known key found for this signature in database
GPG Key ID: 95AFEE837E39AFD2
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ interface RegionCalibratorProps {
function RegionCalibrator({ regions, onComplete }: RegionCalibratorProps) { function RegionCalibrator({ regions, onComplete }: RegionCalibratorProps) {
const [activeRegion, setActiveRegion] = useState(0) const [activeRegion, setActiveRegion] = useState(0)
const [_regions_, _setRegions] = useState<Record<string, any>>({}) const [regions_, _setRegions] = useState<Record<string, any>>({})
const canvasRef = useRef<HTMLCanvasElement>(null) const canvasRef = useRef<HTMLCanvasElement>(null)
const captureScreen = async () => { const captureScreen = async () => {