From 157628d0680f066c2d596c41fa18516dc5856244 Mon Sep 17 00:00:00 2001 From: Kerem Yilmaz Date: Tue, 8 Oct 2024 09:26:07 -0700 Subject: [PATCH] Show terminate in the action type pills (#927) --- skyvern-frontend/src/api/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skyvern-frontend/src/api/types.ts b/skyvern-frontend/src/api/types.ts index eaa1496ac..931e7ad43 100644 --- a/skyvern-frontend/src/api/types.ts +++ b/skyvern-frontend/src/api/types.ts @@ -198,6 +198,7 @@ export const ActionTypes = { UploadFile: "upload_file", complete: "complete", wait: "wait", + terminate: "terminate", } as const; export type ActionType = (typeof ActionTypes)[keyof typeof ActionTypes]; @@ -211,6 +212,7 @@ export const ReadableActionTypes: { upload_file: "Upload File", complete: "Complete", wait: "Wait", + terminate: "Terminate", }; export type Option = {