Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit e370da8

Browse files
update task submission message and remove icon
1 parent 5d89431 commit e370da8

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

aqueductcore/frontend/src/__tests__/Extensions.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ test.skip("submit the form and success modal", async () => {
137137
const runButton = await findByTitle("run_extension");
138138
await userEvent.click(runButton)
139139
//TODO: This should be fixed with the Apollo Cache. As in the code we're using retriveving experimentUuid from cache.
140-
const successModal = await findByText("Execution finished successfully")
140+
const successModal = await findByText("Task submitted")
141141
expect(successModal).toBeInTheDocument()
142142
});
143143

aqueductcore/frontend/src/components/organisms/ExtensionModal/index.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,11 @@ function ExtensionModal({ isOpen, handleClose, selectedExtension }: ExtensionMod
152152
include: "active",
153153
});
154154
toast.success(
155-
"Execution finished successfully",
156-
{ id: "exec_extension_success" }
155+
"Task submitted",
156+
{
157+
id: "exec_extension_success",
158+
icon: null
159+
}
157160
)
158161
}
159162

0 commit comments

Comments
 (0)