fix: format phase 22 worktree files that were committed unformatted
Some checks failed
CI / ci (push) Failing after 12s
CI / e2e (push) Has been skipped

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-06 19:49:09 +02:00
parent 6852e60cee
commit 3f3c08c512
6 changed files with 65 additions and 36 deletions

View File

@@ -36,7 +36,7 @@ function ThreadDetailPage() {
thread?.candidates ?? [],
setupData?.items,
thread?.categoryId ?? 0,
)
);
const [addCandidateOpen, setAddCandidateOpen] = useState(false);
@@ -62,7 +62,7 @@ function ThreadDetailPage() {
</div>
</div>
</div>
)
);
}
if (isError || !thread) {
@@ -79,7 +79,7 @@ function ThreadDetailPage() {
Back to planning
</Link>
</div>
)
);
}
const isActive = thread.status === "active";
@@ -93,7 +93,7 @@ function ThreadDetailPage() {
if (!tempItems) return;
reorderMutation.mutate({
orderedIds: tempItems.map((c) => c.id),
})
});
}
return (
@@ -306,7 +306,7 @@ function ThreadDetailPage() {
/>
)}
</div>
)
);
}
interface AddCandidateModalProps {
@@ -392,10 +392,10 @@ function AddCandidateModal({ threadId, onClose }: AddCandidateModalProps) {
{
onSuccess: () => {
setForm(INITIAL_MODAL_FORM);
onClose()
onClose();
},
},
)
);
}
return (
@@ -625,5 +625,5 @@ function AddCandidateModal({ threadId, onClose }: AddCandidateModalProps) {
</form>
</div>
</div>
)
);
}