debug: add console log for reboot state setting

This commit is contained in:
Adam Shiervani 2025-10-14 22:08:50 +02:00
parent 132c2f9531
commit b6a640fa87
1 changed files with 1 additions and 0 deletions

View File

@ -679,6 +679,7 @@ export default function KvmIdRoute() {
if (resp.method === "willReboot") {
const postRebootAction = resp.params as unknown as PostRebootAction;
console.debug("Setting reboot state", postRebootAction);
setRebootState({ isRebooting: true, postRebootAction });
navigateTo("/");
}