Skip to content

Commit

Permalink
Invalidate workflows query when saved (#803)
Browse files Browse the repository at this point in the history
Co-authored-by: Muhammed Salih Altun <muhammedsalihaltun@gmail.com>
  • Loading branch information
ykeremy and msalihaltun authored Sep 10, 2024
1 parent 4800fe4 commit 995daba
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
37 changes: 37 additions & 0 deletions skyvern-frontend/src/routes/workflows/WorkflowsBetaAlertCard.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import { Button } from "@/components/ui/button";

function WorkflowsBetaAlertCard() {
return (
<div className="flex flex-col items-center rounded-lg bg-slate-900 p-4 shadow">
<header>
<h1 className="py-4 text-3xl">Workflows (Beta)</h1>
</header>
<div>Workflows through UI are currently under construction.</div>
<div>
Today, you can create and run workflows through the Skyvern API.
</div>
<div className="flex gap-4 py-4">
<Button variant="secondary" asChild>
<a
href="https://docs.skyvern.com/workflows/creating-workflows"
target="_blank"
rel="noopener noreferrer"
>
See the workflow docs
</a>
</Button>
<Button asChild>
<a
href="https://meetings.hubspot.com/skyvern/demo"
target="_blank"
rel="noopener noreferrer"
>
Book a demo
</a>
</Button>
</div>
</div>
);
}

export { WorkflowsBetaAlertCard };
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ function WorkflowEditor() {
queryClient.invalidateQueries({
queryKey: ["workflow", workflowPermanentId],
});
queryClient.invalidateQueries({
queryKey: ["workflows"],
});
},
onError: (error: AxiosError) => {
toast({
Expand Down

0 comments on commit 995daba

Please sign in to comment.