chore: fix typo; use correct variable

Signed-off-by: Benjamin Janssens <benji.janssens@gmail.com>
This commit is contained in:
Benjamin Janssens
2025-12-15 15:55:53 +01:00
parent f326bfc4a9
commit 5ce3294f8d
2 changed files with 2 additions and 2 deletions
@@ -488,7 +488,7 @@ repoUrl:
host: github.com
```
This value will be overriden if a different host is specified in a `RepoUrlPicker` field extension.
This value will be overridden if a different host is specified in a `RepoUrlPicker` field extension.
### `excludedOwners`
@@ -69,7 +69,7 @@ export function createHandleAutocompleteRequest(options: {
client.rest.orgs.listForAuthenticatedUser,
);
const results = branches.map(r => ({ id: r.login }));
const results = orgs.map(r => ({ id: r.login }));
return { results };
}