File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ export class Server {
178
178
const header = `Project Name | Project ID | Created At
179
179
----------------|----------------|----------------` ;
180
180
const rows = projects
181
- . map ( project => {
181
+ . map ( ( project ) => {
182
182
const createdAt = project . created ? new Date ( project . created . $date ) . toLocaleString ( ) : "N/A" ;
183
183
return `${ project . name } | ${ project . id } | ${ createdAt } ` ;
184
184
} )
@@ -218,7 +218,9 @@ export class Server {
218
218
version : config . version ,
219
219
} ) ;
220
220
server . tool ( "auth" , "Authenticate to Atlas" , async ( ) => this . authTool ( ) ) ;
221
- let projectIdFilter = z . string ( ) . describe ( "Optional Atlas project ID to filter clusters" ) ;
221
+ let projectIdFilter = z
222
+ . string ( )
223
+ . describe ( "Optional Atlas project ID to filter clusters" ) ;
222
224
if ( config . projectID ) {
223
225
projectIdFilter = projectIdFilter . optional ( ) ;
224
226
}
You can’t perform that action at this time.
0 commit comments