You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
content: [{type: "text",text: "No organizations were found in your MongoDB Atlas account. Please create an organization first."}],
29
+
content: [
30
+
{
31
+
type: "text",
32
+
text: "No organizations were found in your MongoDB Atlas account. Please create an organization first.",
33
+
},
34
+
],
31
35
isError: true,
32
36
};
33
37
}
34
38
organizationId=organizations.results[0].id;
35
39
assumedOrg=true;
36
-
}catch(error){
40
+
}catch{
37
41
return{
38
-
content: [{type: "text",text: "Could not search for organizations in your MongoDB Atlas account, please provide an organization ID or create one first."}],
42
+
content: [
43
+
{
44
+
type: "text",
45
+
text: "Could not search for organizations in your MongoDB Atlas account, please provide an organization ID or create one first.",
46
+
},
47
+
],
39
48
isError: true,
40
49
};
41
-
42
50
}
43
51
}
44
52
@@ -52,7 +60,12 @@ export class CreateProjectTool extends AtlasToolBase {
0 commit comments