diff options
Diffstat (limited to 'cli/js/ops/process.ts')
-rw-r--r-- | cli/js/ops/process.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/ops/process.ts b/cli/js/ops/process.ts index 7644bf6e7..845909d5d 100644 --- a/cli/js/ops/process.ts +++ b/cli/js/ops/process.ts @@ -13,7 +13,7 @@ interface RunStatusResponse { } export async function runStatus(rid: number): Promise<RunStatusResponse> { - return await sendAsync("op_run_status", { rid }); + return sendAsync("op_run_status", { rid }); } interface RunRequest { |