Skip to content

Commit

Permalink
Fix ui code
Browse files Browse the repository at this point in the history
  • Loading branch information
boxbeam committed Apr 25, 2024
1 parent 212ea92 commit 32fdee5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ import {
} from '../../components/github-form'

const deleteGithubRepositoryProviderMutation = graphql(/* GraphQL */ `
mutation DeleteGithubRepositoryProvider($id: ID!) {
mutation DeleteRepositoryProvider($id: ID!) {
deleteGithubRepositoryProvider(id: $id)
}
`)

const updateGithubRepositoryProviderMutation = graphql(/* GraphQL */ `
mutation UpdateGithubRepositoryProvider(
$input: UpdateGithubRepositoryProviderInput!
mutation UpdateRepositoryProvider(
$input: UpdateRepositoryProviderInput!
) {
updateGithubRepositoryProvider(input: $input)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {

const createGithubRepositoryProvider = graphql(/* GraphQL */ `
mutation CreateGithubRepositoryProvider(
$input: CreateGithubRepositoryProviderInput!
$input: CreateRepositoryProviderInput!
) {
createGithubRepositoryProvider(input: $input)
}
Expand Down

0 comments on commit 32fdee5

Please sign in to comment.