From 53b1be6f59675e7d7a46c0290320e4d1180ceab6 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Thu, 22 Aug 2024 22:01:28 -0400 Subject: [PATCH] Call corect functions --- src/assets/hestia.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/assets/hestia.js b/src/assets/hestia.js index 1c28ed4..9cb926f 100644 --- a/src/assets/hestia.js +++ b/src/assets/hestia.js @@ -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() {