This commit is contained in:
Andrew Kingston 2024-09-26 09:02:32 +01:00
parent f3c219ace4
commit f08e449758
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -60,11 +60,11 @@
await updateRole(target)
}
const onEdgeMouseOver = e => {
const onEdgeMouseOver = () => {
edgeHovered = true
}
const onEdgeMouseOut = e => {
const onEdgeMouseOut = () => {
edgeHovered = false
}