File tree 2 files changed +2
-2
lines changed
packages/app/src/cli/utilities/developer-platform-client
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ export class AppManagementClient implements DeveloperPlatformClient {
331
331
if ( ! organizationsResult . currentUserAccount ) return [ ]
332
332
return organizationsResult . currentUserAccount . organizations . nodes . map ( ( org ) => ( {
333
333
id : idFromEncodedGid ( org . id ) ,
334
- businessName : org . name ,
334
+ businessName : org . name + ' (Dev Dashboard)' ,
335
335
source : this . organizationSource ,
336
336
} ) )
337
337
}
Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ export class PartnersClient implements DeveloperPlatformClient {
293
293
const result = await this . requestDoc ( AllOrgs )
294
294
return result . organizations . nodes ! . map ( ( org ) => ( {
295
295
id : org ! . id ,
296
- businessName : org ! . businessName ,
296
+ businessName : org ! . businessName + ' (Partners)' ,
297
297
source : this . organizationSource ,
298
298
} ) )
299
299
} catch ( error : unknown ) {
You can’t perform that action at this time.
0 commit comments