Clarify TODO comment for reviewer search function

Updated the TODO comment to specify wiring up the reviewer search function if or when it exists, providing clearer intent for future development.
This commit is contained in:
Kynan Ware 2026-01-11 20:02:52 -07:00
parent ad8c770013
commit c0df49043f

View file

@ -294,7 +294,7 @@ func editRun(opts *EditOptions) error {
apiClient := api.NewClientFromHTTP(httpClient)
// Wire up search functions for assignees and reviewers.
// TODO: Wire up reviewer search func.
// TODO KW: Wire up reviewer search func if/when it exists.
if issueFeatures.ActorIsAssignable {
editable.AssigneeSearchFunc = assigneeSearchFunc(apiClient, repo, &editable, pr.ID)
}