style: apply formatter changes

This commit is contained in:
2026-06-12 11:39:00 +02:00
parent 4c4c10b154
commit fa88badc69
2 changed files with 4 additions and 2 deletions

View File

@@ -76,7 +76,8 @@ async function main(): Promise<void> {
}
function summarizeFailure(stderr: Uint8Array, stdout: Uint8Array): string {
const combined = `${Buffer.from(stderr).toString("utf8")}${Buffer.from(stdout).toString("utf8")}`.trim();
const combined =
`${Buffer.from(stderr).toString("utf8")}${Buffer.from(stdout).toString("utf8")}`.trim();
if (combined === "") {
return "";
}

View File

@@ -493,7 +493,8 @@ const openSearch = (): void => {
return;
}
lastFocusedSearchOpener = document.activeElement instanceof HTMLElement ? document.activeElement : null;
lastFocusedSearchOpener =
document.activeElement instanceof HTMLElement ? document.activeElement : null;
setSearchState(true);
searchInput.value = "";
lastQuery = "";