Modal, header, mobile display and workflow UI updates

This commit is contained in:
willchen96 2026-06-11 22:43:13 +08:00
parent 8a2dc05181
commit 3132e04ac0
34 changed files with 1635 additions and 1076 deletions

View file

@ -0,0 +1,7 @@
import type { Workflow } from "../shared/types";
export function workflowDetailPath(workflow: Pick<Workflow, "id" | "type">) {
return workflow.type === "assistant"
? `/workflows/assistant/${workflow.id}`
: `/workflows/tabular-review/${workflow.id}`;
}