feat: valves full integration

This commit is contained in:
Timothy J. Baek
2024-05-28 13:05:31 -07:00
parent 7c271734a1
commit 2d596d7307
4 changed files with 138 additions and 36 deletions

View File

@@ -156,7 +156,12 @@ export const updatePipelineValves = async (
})
.catch((err) => {
console.log(err);
error = err;
if ('detail' in err) {
error = err.detail;
} else {
error = err;
}
return null;
});