Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-05-30 17:57:14 +00:00
parent cca95ded5a
commit 517cd3d0ad

View file

@ -50,6 +50,7 @@ export function useCronjobs() {
.from("scheduled_jobs")
.select("*")
.eq("user_id", user!.id)
.neq("status", "archived")
.order("created_at", { ascending: false });
if (error) throw error;
return (data ?? []).map(normalizeJob);