feat: update components and hooks to use get_untracked for improved performance

This commit is contained in:
asepharyana
2026-07-04 03:03:36 +07:00
parent 8166023f91
commit 27e929580e
85 changed files with 1703 additions and 1843 deletions
@@ -62,7 +62,10 @@ export function runFfmpeg(args: string[]): Promise<void> {
resolve();
} else {
const detail = stderrBuf.trim().slice(0, 2000);
logger.warn({ exitCode: code, stderr: detail }, "ffmpeg exited with non-zero code");
logger.warn(
{ exitCode: code, stderr: detail },
"ffmpeg exited with non-zero code",
);
reject(new Error(`ffmpeg exited with code ${code}: ${detail}`));
}
});