Fix regions_ variable name - revert underscore prefix since its used
This commit is contained in:
parent
ec1f3a1b06
commit
07b585fe5c
|
|
@ -277,7 +277,7 @@ interface RegionCalibratorProps {
|
|||
|
||||
function RegionCalibrator({ regions, onComplete }: RegionCalibratorProps) {
|
||||
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 captureScreen = async () => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue