mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-09-25 18:31:15 +02:00
points cannot be null
This commit is contained in:
@@ -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,
|
||||
|
Reference in New Issue
Block a user