Skip to content

Commit c4a1f75

Browse files
committed
fix: styles
1 parent 99074f8 commit c4a1f75

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

src/common/atlas/apiClient.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ export class ApiClient {
6565
try {
6666
const text = await response.text();
6767
throw new ApiClientError(`Error calling Atlas API: [${response.statusText}] ${text}`, response);
68-
}
69-
catch {
68+
} catch {
7069
throw new ApiClientError(`Error calling Atlas API: ${response.statusText}`, response);
7170
}
7271
}

src/tools/atlas/createDBUser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export class CreateDBUserTool extends AtlasToolBase {
5959
groupId: projectId,
6060
},
6161
},
62-
body: input
62+
body: input,
6363
});
6464

6565
return {

src/tools/atlas/inspectAccessList.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ export class InspectAccessListTool extends AtlasToolBase {
2929
content: [
3030
{
3131
type: "text",
32-
text:
33-
`IP ADDRESS | CIDR | COMMENT
32+
text: `IP ADDRESS | CIDR | COMMENT
3433
------|------|------
3534
${(accessList.results || [])
3635
.map((entry) => {

0 commit comments

Comments
 (0)