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() {
psState.startup(comms);
refreshState(window.document, psState);
comms.startup();
}
export function shutdown() {
psState.shutdown(comms);
refreshState(window.document, psState);
comms.shutdown();
}
window.onload = function() {