points cannot be null

This commit is contained in:
zsviczian
2025-08-07 21:39:50 +02:00
committed by GitHub
parent 2df323a5c3
commit a17090f455

View File

@@ -9107,7 +9107,7 @@ class App extends React.Component<AppProps, AppState> {
newElement &&
!multiElement
) {
if (this.device.isTouchScreen && newElement.points.length > 1) {
if (this.device.isTouchScreen && newElement!.points.length > 1) {
const FIXED_DELTA_X = Math.min(
(this.state.width * 0.7) / this.state.zoom.value,
100,