lint
All checks were successful
Code quality checks / biome (push) Successful in 18s

This commit is contained in:
Seth 2025-05-17 19:45:01 -04:00
parent f634b8cce3
commit e2fd7a343b
2 changed files with 4 additions and 2 deletions

View file

@ -205,4 +205,4 @@ body {
100% {
transform: scale(1);
}
}
}

View file

@ -34,7 +34,9 @@ class Socket extends EventTarget {
};
this._socket.onclose = () => {
const willRefresh = confirm("Realtime Data Connection closed\nWould you like to reconnect?");
const willRefresh = confirm(
"Realtime Data Connection closed\nWould you like to reconnect?",
);
if (willRefresh) {
location.reload();
}