Change order of your templates vs Skyvern (#389)

This commit is contained in:
Kerem Yilmaz
2024-05-29 11:45:45 -07:00
committed by GitHub
parent caa974974c
commit e8bc40e491

View File

@@ -44,6 +44,13 @@ function TaskTemplates() {
return (
<div>
<section className="py-4">
<header>
<h1 className="text-3xl">Your Templates</h1>
</header>
<Separator className="mt-2 mb-8" />
<SavedTasks />
</section>
<section className="py-4">
<header>
<h1 className="text-3xl">Skyvern Templates</h1>
@@ -72,13 +79,6 @@ function TaskTemplates() {
})}
</div>
</section>
<section className="py-4">
<header>
<h1 className="text-3xl">Your Templates</h1>
</header>
<Separator className="mt-2 mb-8" />
<SavedTasks />
</section>
</div>
);
}