refactor(control): remove unnecessary html syntax in blackout

This commit is contained in:
E44
2025-11-22 13:16:13 +01:00
parent 74f2b5f5a7
commit 4c3522a63c
+1 -1
View File
@@ -111,7 +111,7 @@ export async function show_blackscreen(ip: string): Promise<void> {
method: 'PATCH',
headers: { 'content-type': 'application/json' },
body: JSON.stringify({
html: `<div style="width:100dvw; height:100dvh; background-color:black;"></div>`
html: ``
})
};
await request_display(ip, '/showHTML', options);