diff --git a/apps/web/src/components/admin/settings/integrations/github/github-config.tsx b/apps/web/src/components/admin/settings/integrations/github/github-config.tsx index bc380e34f..9eff44150 100644 --- a/apps/web/src/components/admin/settings/integrations/github/github-config.tsx +++ b/apps/web/src/components/admin/settings/integrations/github/github-config.tsx @@ -86,9 +86,9 @@ export function GitHubConfig({ updateMutation.mutate({ id: integrationId, enabled: checked }) } - const handleRepoChange = (repoId: string) => { - setSelectedRepo(repoId) - updateMutation.mutate({ id: integrationId, config: { channelId: repoId } }) + const handleRepoChange = (repoFullName: string) => { + setSelectedRepo(repoFullName) + updateMutation.mutate({ id: integrationId, config: { channelId: repoFullName } }) } const handleEventToggle = (eventId: string, checked: boolean) => { @@ -158,7 +158,7 @@ export function GitHubConfig({ {repos.map((repo) => ( - +
{repo.fullName}