fix: format phase 22 worktree files that were committed unformatted
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -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>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user