1
0
forked from noxious/client

Minor formatting improvement

This commit is contained in:
Dennis Postma 2025-01-25 00:02:22 +01:00
parent 3936676f2c
commit 30845b80e9

View File

@ -177,13 +177,9 @@ const handleResize = () => {
}
// Lifecycle
watch(
() => mapObject.value,
() => {
watch(() => mapObject.value, () => {
updateScene()
},
{ deep: true }
)
})
onMounted(() => window.addEventListener('resize', handleResize))