[fix]: Fix typo in shapeType declaration (#1747)

Fix minor typo error in shapeType declaration

**Change Type**

- [x] `patch`

**Test Plan**

- [x]  Unit Tests
- [ ]  End to end tests

**Release Notes**

Fix typo

Co-authored-by: Steve Ruiz <steveruizok@gmail.com>
This commit is contained in:
Ricardo Crespo 2023-07-19 00:36:20 +02:00 committed by GitHub
parent 789b1d1ac6
commit f1f706f0b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,5 +7,5 @@ export class ArrowShapeTool extends StateNode {
static override initial = 'idle'
static override children = () => [Idle, Pointing]
overrideshapeType = 'arrow'
override shapeType = 'arrow'
}