web: reduce polling interval

The operations will usually take half a second.
This commit is contained in:
Quaternions 2025-04-03 15:12:18 -07:00
parent c6ebe5a360
commit 1ff1cae709
Signed by: Quaternions
GPG Key ID: D0DF5964F79AC131

@ -55,7 +55,7 @@ export default function OperationStatusPage() {
fetchOperation();
if (!intervalRef.current) {
intervalRef.current = setInterval(fetchOperation, 5000);
intervalRef.current = setInterval(fetchOperation, 1000);
}
return () => {