fix: accidentally kept static websocket address from dev in

This commit is contained in:
Janek 2024-04-12 14:19:23 +02:00
parent a75925f07d
commit 9e6ef96d39

@ -35,7 +35,7 @@ if (location.protocol == 'https:') {
} else {
websocketAddr = `ws://${window.location.host}/ws`
}
websocketAddr = "ws://192.168.0.235:8000/ws"
//websocketAddr = "ws://192.168.0.235:8000/ws"
// Util functions
const clamp = (num, min, max) => Math.min(Math.max(num, min), max);