mirror of
https://github.com/willchen96/mike.git
synced 2026-06-24 21:38:06 +02:00
8 lines
273 B
TypeScript
8 lines
273 B
TypeScript
|
|
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}`;
|
||
|
|
}
|