File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,7 @@ export class ApiClient {
65
65
try {
66
66
const text = await response . text ( ) ;
67
67
throw new ApiClientError ( `Error calling Atlas API: [${ response . statusText } ] ${ text } ` , response ) ;
68
- }
69
- catch {
68
+ } catch {
70
69
throw new ApiClientError ( `Error calling Atlas API: ${ response . statusText } ` , response ) ;
71
70
}
72
71
}
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export class CreateDBUserTool extends AtlasToolBase {
59
59
groupId : projectId ,
60
60
} ,
61
61
} ,
62
- body : input
62
+ body : input ,
63
63
} ) ;
64
64
65
65
return {
Original file line number Diff line number Diff line change @@ -29,8 +29,7 @@ export class InspectAccessListTool extends AtlasToolBase {
29
29
content : [
30
30
{
31
31
type : "text" ,
32
- text :
33
- `IP ADDRESS | CIDR | COMMENT
32
+ text : `IP ADDRESS | CIDR | COMMENT
34
33
------|------|------
35
34
${ ( accessList . results || [ ] )
36
35
. map ( ( entry ) => {
You can’t perform that action at this time.
0 commit comments