diff options
Diffstat (limited to 'makima/frontend/src/routes/tmp.tsx')
| -rw-r--r-- | makima/frontend/src/routes/tmp.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/makima/frontend/src/routes/tmp.tsx b/makima/frontend/src/routes/tmp.tsx index c0c7365..5ac7233 100644 --- a/makima/frontend/src/routes/tmp.tsx +++ b/makima/frontend/src/routes/tmp.tsx @@ -1,14 +1,14 @@ /** * Standalone task page for orphan tasks (`/tmp/:taskId`). These are tasks * with no directive attachment — the document-mode sidebar surfaces them - * under the `tmp/` pseudo-folder. We render `DocumentTaskStream` directly - * without the directive sidebar selection, framed by the masthead so users - * still have global navigation. + * under the `tmp/` pseudo-folder. We render `TaskPage` directly without + * the directive sidebar selection, framed by the masthead so users still + * have global navigation. */ import { useEffect, useState } from "react"; import { useNavigate, useParams } from "react-router"; import { Masthead } from "../components/Masthead"; -import { DocumentTaskStream } from "../components/directives/DocumentTaskStream"; +import { TaskPage } from "../components/directives/TaskPage"; import { useAuth } from "../contexts/AuthContext"; import { getTask, type Task } from "../lib/api"; @@ -82,7 +82,7 @@ export default function TmpTaskPage() { <p className="text-red-400 font-mono text-xs">{error}</p> </div> ) : taskId ? ( - <DocumentTaskStream taskId={taskId} label={task?.name ?? taskId.slice(0, 8)} /> + <TaskPage taskId={taskId} label={task?.name ?? taskId.slice(0, 8)} /> ) : null} </main> </div> |
