Call corect functions

This commit is contained in:
Skylar Grant 2024-08-22 22:01:28 -04:00
parent 7f8c090781
commit 53b1be6f59
1 changed files with 2 additions and 4 deletions

View File

@ -62,13 +62,11 @@ export function togglePower(element) {
} }
export function startup() { export function startup() {
psState.startup(comms); comms.startup();
refreshState(window.document, psState);
} }
export function shutdown() { export function shutdown() {
psState.shutdown(comms); comms.shutdown();
refreshState(window.document, psState);
} }
window.onload = function() { window.onload = function() {