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 {
178178 const header = `Project Name | Project ID | Created At
179179----------------|----------------|----------------` ;
180180 const rows = projects
181- . map ( project => {
181+ . map ( ( project ) => {
182182 const createdAt = project . created ? new Date ( project . created . $date ) . toLocaleString ( ) : "N/A" ;
183183 return `${ project . name } | ${ project . id } | ${ createdAt } ` ;
184184 } )
@@ -218,7 +218,9 @@ export class Server {
218218 version : config . version ,
219219 } ) ;
220220 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" ) ;
222224 if ( config . projectID ) {
223225 projectIdFilter = projectIdFilter . optional ( ) ;
224226 }
You can’t perform that action at this time.
0 commit comments