Skip to content

Commit

Permalink
change mutation
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveDarsa committed Jul 4, 2024
1 parent 479c42a commit 00a9dfe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/SshKeys/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Skeleton from 'react-loading-skeleton';
import { Col, Modal, Row, Space } from 'antd';
import Button from 'components/Button';
import DeleteUserSSHPublicKey from 'lib/mutation/DeleteUserSSHPublicKey';
import UpdateUserSSHPublicKey from 'lib/mutation/UpdateUserSshPublicKey';
import UpdateUserSSHPublicKey from 'lib/mutation/UpdateUserSSHPublicKey';
import Me from 'lib/query/Me';
import moment from 'moment';

Expand Down
2 changes: 1 addition & 1 deletion src/lib/mutation/AddUserSSHPublicKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default gql`
addUserSSHPublicKey(input: $input) {
id
name
publicKey
keyValue
created
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/mutation/UpdateUserSSHPublicKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default gql`
updateUserSSHPublicKey(input: $input) {
id
name
publicKey
keyValue
}
}
`;

0 comments on commit 00a9dfe

Please sign in to comment.